Skip to content

Commit da9c84b

Browse files
author
kumarvna
committed
update module
1 parent fcff1ac commit da9c84b

File tree

8 files changed

+1
-50
lines changed

8 files changed

+1
-50
lines changed

README.md

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ module "storage" {
2727
# By default, this module will not create a resource group
2828
# proivde a name to use an existing resource group, specify the existing resource group name,
2929
# and set the argument to `create_resource_group = false`. Location will be same as existing RG.
30-
# RG name must follow Azure naming convention.
31-
# For ex.: rg-<App or project name>-<Subscription type>-<Region>-<###>
32-
# Resource group is named like this: rg-demo-internal-prod-westeurope-001
3330
resource_group_name = "rg-demo-internal-shared-westeurope-002"
3431
location = "westeurope"
3532
storage_account_name = "mydefaultstorage"
@@ -56,25 +53,6 @@ module "storage" {
5653
# Storage queues
5754
queues = ["queue1", "queue2"]
5855
59-
# Lifecycle management for storage account.
60-
# Must specify the value to each argument and default is `0`
61-
lifecycles = [
62-
{
63-
prefix_match = ["mystore250/folder_path"]
64-
tier_to_cool_after_days = 0
65-
tier_to_archive_after_days = 50
66-
delete_after_days = 100
67-
snapshot_delete_after_days = 30
68-
},
69-
{
70-
prefix_match = ["blobstore251/another_path"]
71-
tier_to_cool_after_days = 0
72-
tier_to_archive_after_days = 30
73-
delete_after_days = 75
74-
snapshot_delete_after_days = 30
75-
}
76-
]
77-
7856
# Adding TAG's to your Azure resources (Required)
7957
# ProjectName and Env are already declared above, to use them here, create a varible.
8058
tags = {

examples/README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ module "storage" {
1414
# By default, this module will not create a resource group
1515
# proivde a name to use an existing resource group, specify the existing resource group name,
1616
# and set the argument to `create_resource_group = false`. Location will be same as existing RG.
17-
# RG name must follow Azure naming convention.
18-
# For ex.: rg-<App or project name>-<Subscription type>-<Region>-<###>
19-
# Resource group is named like this: rg-demo-internal-prod-westeurope-001
2017
resource_group_name = "rg-demo-internal-shared-westeurope-002"
2118
location = "westeurope"
2219
storage_account_name = "mydefaultstorage"
@@ -52,9 +49,6 @@ module "storage" {
5249
# By default, this module will not create a resource group
5350
# proivde a name to use an existing resource group, specify the existing resource group name,
5451
# and set the argument to `create_resource_group = false`. Location will be same as existing RG.
55-
# RG name must follow Azure naming convention.
56-
# For ex.: rg-<App or project name>-<Subscription type>-<Region>-<###>
57-
# Resource group is named like this: rg-demo-internal-prod-westeurope-001
5852
resource_group_name = "rg-demo-internal-shared-westeurope-002"
5953
location = "westeurope"
6054
storage_account_name = "mydefaultstorage"
@@ -90,9 +84,6 @@ module "storage" {
9084
# By default, this module will not create a resource group
9185
# proivde a name to use an existing resource group, specify the existing resource group name,
9286
# and set the argument to `create_resource_group = false`. Location will be same as existing RG.
93-
# RG name must follow Azure naming convention.
94-
# For ex.: rg-<App or project name>-<Subscription type>-<Region>-<###>
95-
# Resource group is named like this: rg-demo-internal-prod-westeurope-001
9687
resource_group_name = "rg-demo-internal-shared-westeurope-002"
9788
location = "westeurope"
9889
storage_account_name = "mydefaultstorage"

examples/complete/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ module "storage" {
1010
# By default, this module will not create a resource group
1111
# proivde a name to use an existing resource group, specify the existing resource group name,
1212
# and set the argument to `create_resource_group = false`. Location will be same as existing RG.
13-
# RG name must follow Azure naming convention.
14-
# For ex.: rg-<App or project name>-<Subscription type>-<Region>-<###>
15-
# Resource group is named like this: rg-demo-internal-prod-westeurope-001
1613
resource_group_name = "rg-demo-internal-shared-westeurope-002"
1714
location = "westeurope"
1815
storage_account_name = "mydefaultstorage"

examples/complete/main.tf

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ 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-
# RG name must follow Azure naming convention.
9-
# For ex.: rg-<App or project name>-<Subscription type>-<Region>-<###>
10-
# Resource group is named like this: rg-demo-internal-prod-westeurope-001
118
resource_group_name = "rg-demo-internal-shared-westeurope-002"
129
location = "westeurope"
1310
storage_account_name = "mydefaultstorage"

examples/storage_account_with_containers/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ module "storage" {
1212
# By default, this module will not create a resource group
1313
# proivde a name to use an existing resource group, specify the existing resource group name,
1414
# and set the argument to `create_resource_group = false`. Location will be same as existing RG.
15-
# RG name must follow Azure naming convention.
16-
# For ex.: rg-<App or project name>-<Subscription type>-<Region>-<###>
17-
# Resource group is named like this: rg-demo-internal-prod-westeurope-001
1815
resource_group_name = "rg-demo-internal-shared-westeurope-002"
1916
location = "westeurope"
2017
storage_account_name = "mydefaultstorage"

examples/storage_account_with_containers/main.tf

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@ module "storage" {
44

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,
7-
# and set the argument to `create_resource_group = false`. Location will be same as existing RG.
8-
# RG name must follow Azure naming convention.
9-
# For ex.: rg-<App or project name>-<Subscription type>-<Region>-<###>
10-
# Resource group is named like this: rg-demo-internal-prod-westeurope-001
7+
# and set the argument to `create_resource_group = false`. Location will be same as existing RG.
118
resource_group_name = "rg-demo-internal-shared-westeurope-002"
129
location = "westeurope"
1310
storage_account_name = "mydefaultstorage"

examples/storage_account_with_fileshares/README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ module "storage" {
1212
# By default, this module will not create a resource group
1313
# proivde a name to use an existing resource group, specify the existing resource group name,
1414
# and set the argument to `create_resource_group = false`. Location will be same as existing RG.
15-
# RG name must follow Azure naming convention.
16-
# For ex.: rg-<App or project name>-<Subscription type>-<Region>-<###>
17-
# Resource group is named like this: rg-demo-internal-prod-westeurope-001
1815
resource_group_name = "rg-demo-internal-shared-westeurope-002"
1916
location = "westeurope"
2017
storage_account_name = "mydefaultstorage"

examples/storage_account_with_fileshares/main.tf

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ 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-
# RG name must follow Azure naming convention.
9-
# For ex.: rg-<App or project name>-<Subscription type>-<Region>-<###>
10-
# Resource group is named like this: rg-demo-internal-prod-westeurope-001
118
resource_group_name = "rg-demo-internal-shared-westeurope-002"
129
location = "westeurope"
1310
storage_account_name = "mydefaultstorage"

0 commit comments

Comments
 (0)