Skip to content

Commit 221a166

Browse files
committed
Module updated to support latest azure provider
1 parent 0046be7 commit 221a166

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

Lines changed: 4 additions & 3 deletions
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

Lines changed: 4 additions & 3 deletions
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)