Skip to content

Commit 7fc58e7

Browse files
authored
Merge pull request #3 from kumarvna/develop
Module updated to support latest azure provider
2 parents 0046be7 + 221a166 commit 7fc58e7

File tree

2 files changed

+8
-6
lines changed
  • examples
    • storage_account_with_containers
    • storage_account_with_fileshares

2 files changed

+8
-6
lines changed

examples/storage_account_with_containers/main.tf

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ module "storage" {
55
# By default, this module will not create a resource group
66
# proivde a name to use an existing resource group, specify the existing resource group name,
77
# and set the argument to `create_resource_group = false`. Location will be same as existing RG.
8-
resource_group_name = "rg-demo-internal-shared-westeurope-002"
9-
location = "westeurope"
10-
storage_account_name = "mydefaultstorage"
8+
create_resource_group = true
9+
resource_group_name = "rg-demo-internal-shared-westeurope-002"
10+
location = "westeurope"
11+
storage_account_name = "mydefaultstorage"
1112

1213
# To enable advanced threat protection set argument to `true`
1314
enable_advanced_threat_protection = true

examples/storage_account_with_fileshares/main.tf

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ module "storage" {
55
# By default, this module will not create a resource group
66
# proivde a name to use an existing resource group, specify the existing resource group name,
77
# and set the argument to `create_resource_group = false`. Location will be same as existing RG.
8-
resource_group_name = "rg-demo-internal-shared-westeurope-002"
9-
location = "westeurope"
10-
storage_account_name = "mydefaultstorage"
8+
create_resource_group = true
9+
resource_group_name = "rg-demo-internal-shared-westeurope-002"
10+
location = "westeurope"
11+
storage_account_name = "mydefaultstorage"
1112

1213
# To enable advanced threat protection set argument to `true`
1314
enable_advanced_threat_protection = true

0 commit comments

Comments
 (0)