Skip to content

Commit

Permalink
Merge pull request #3 from kumarvna/develop
Browse files Browse the repository at this point in the history
Module updated to support latest azure provider
  • Loading branch information
kumarvna authored May 14, 2021
2 parents 0046be7 + 221a166 commit 7fc58e7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions examples/storage_account_with_containers/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ module "storage" {
# By default, this module will not create a resource group
# proivde a name to use an existing resource group, specify the existing resource group name,
# and set the argument to `create_resource_group = false`. Location will be same as existing RG.
resource_group_name = "rg-demo-internal-shared-westeurope-002"
location = "westeurope"
storage_account_name = "mydefaultstorage"
create_resource_group = true
resource_group_name = "rg-demo-internal-shared-westeurope-002"
location = "westeurope"
storage_account_name = "mydefaultstorage"

# To enable advanced threat protection set argument to `true`
enable_advanced_threat_protection = true
Expand Down
7 changes: 4 additions & 3 deletions examples/storage_account_with_fileshares/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ module "storage" {
# By default, this module will not create a resource group
# proivde a name to use an existing resource group, specify the existing resource group name,
# and set the argument to `create_resource_group = false`. Location will be same as existing RG.
resource_group_name = "rg-demo-internal-shared-westeurope-002"
location = "westeurope"
storage_account_name = "mydefaultstorage"
create_resource_group = true
resource_group_name = "rg-demo-internal-shared-westeurope-002"
location = "westeurope"
storage_account_name = "mydefaultstorage"

# To enable advanced threat protection set argument to `true`
enable_advanced_threat_protection = true
Expand Down

0 comments on commit 7fc58e7

Please sign in to comment.