From 02250510eb7371a7d8389dba9173c237cad00107 Mon Sep 17 00:00:00 2001 From: Rudra Gupta Date: Wed, 25 Sep 2024 23:42:19 -0400 Subject: [PATCH] feat: update tf modules Signed-off-by: Rudra Gupta --- examples/basic/main.tf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/basic/main.tf b/examples/basic/main.tf index c2dcb10..0e8b832 100644 --- a/examples/basic/main.tf +++ b/examples/basic/main.tf @@ -6,12 +6,12 @@ module "azure_blob_storage" { # source = "../../" # This assumes the example is in a subdirectory of the module source = "github.com/krumio/terraform-azure-blob-storage" - resource_group_name = "cfi-resources" - location = "eastus" - storage_account_name = "cfistorage${random_string.suffix.result}" - container_name = "container1" - enable_versioning = true - + resource_group_name = "cfi-resources" + location = "eastus" + storage_account_name = "cfistorage${random_string.suffix.result}" + container_name = "container1" + enable_versioning = true + tags = { Environment = "Development" Project = "CFIAzureBlobStorage"