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"