Skip to content

Commit 3f92c28

Browse files
committed
updating examples for identity change
1 parent b78bead commit 3f92c28

File tree

9 files changed

+14
-13
lines changed

9 files changed

+14
-13
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# .tfstate files
66
*.tfstate
77
*.tfstate.*
8+
*.terraform.lock.hcl
89

910
# Crash log files
1011
crash.log

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ provider "azurerm" {
2828
2929
module "storage" {
3030
source = "kumarvna/storage/azurerm"
31-
version = "2.3.0"
31+
version = "2.4.0"
3232
3333
# By default, this module will not create a resource group
3434
# proivde a name to use an existing resource group, specify the existing resource group name,
@@ -106,7 +106,7 @@ Azure Files offers fully managed file shares in the cloud that are accessible vi
106106

107107
This module creates the SMB file shares based on your input within an Azure Storage Account. Configure the `quota` for this file share as per your preference. The maximum size of the share, in gigabytes. For Standard storage accounts, this must be greater than `0` and less than `5120` GB (5 TB). For Premium FileStorage storage accounts, this must be greater than `100` GB and less than `102400` GB (100 TB).
108108

109-
## Soft delete for Blob storage
109+
## Soft delete for Blobs or Containers
110110

111111
Soft delete protects blob data from being accidentally or erroneously modified or deleted. When soft delete is enabled for a storage account, containers, blobs, blob versions, and snapshots in that storage account may be recovered after they are deleted, within a retention period that you specify.
112112

@@ -126,7 +126,7 @@ The default action set to `Allow` when no network rules matched. A `subnet_ids`
126126
```hcl
127127
module "storage" {
128128
source = "kumarvna/storage/azurerm"
129-
version = "2.3.0"
129+
version = "2.4.0"
130130
131131
# .... omitted
132132
@@ -159,7 +159,7 @@ This module supports the implementation of storage lifecycle management. If spec
159159
```hcl
160160
module "storage" {
161161
source = "kumarvna/storage/azurerm"
162-
version = "2.3.0"
162+
version = "2.4.0"
163163
164164
# .... omitted
165165

examples/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ provider "azurerm" {
1414
1515
module "storage" {
1616
source = "kumarvna/storage/azurerm"
17-
version = "2.3.0"
17+
version = "2.4.0"
1818
1919
# By default, this module will not create a resource group
2020
# proivde a name to use an existing resource group, specify the existing resource group name,
@@ -54,7 +54,7 @@ provider "azurerm" {
5454
5555
module "storage" {
5656
source = "kumarvna/storage/azurerm"
57-
version = "2.3.0"
57+
version = "2.4.0"
5858
5959
# By default, this module will not create a resource group
6060
# proivde a name to use an existing resource group, specify the existing resource group name,
@@ -94,7 +94,7 @@ provider "azurerm" {
9494
9595
module "storage" {
9696
source = "kumarvna/storage/azurerm"
97-
version = "2.3.0"
97+
version = "2.4.0"
9898
9999
# By default, this module will not create a resource group
100100
# proivde a name to use an existing resource group, specify the existing resource group name,

examples/complete/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ provider "azurerm" {
1010
1111
module "storage" {
1212
source = "kumarvna/storage/azurerm"
13-
version = "2.3.0"
13+
version = "2.4.0"
1414
1515
# By default, this module will not create a resource group
1616
# proivde a name to use an existing resource group, specify the existing resource group name,

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ provider "azurerm" {
55

66
module "storage" {
77
source = "kumarvna/storage/azurerm"
8-
version = "2.3.0"
8+
version = "2.4.0"
99

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,

examples/storage_account_with_containers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ provider "azurerm" {
1212
1313
module "storage" {
1414
source = "kumarvna/storage/azurerm"
15-
version = "2.3.0"
15+
version = "2.4.0"
1616
1717
# By default, this module will not create a resource group
1818
# proivde a name to use an existing resource group, specify the existing resource group name,

examples/storage_account_with_containers/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ provider "azurerm" {
55

66
module "storage" {
77
source = "kumarvna/storage/azurerm"
8-
version = "2.3.0"
8+
version = "2.4.0"
99

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,

examples/storage_account_with_fileshares/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ provider "azurerm" {
1212
1313
module "storage" {
1414
source = "kumarvna/storage/azurerm"
15-
version = "2.3.0"
15+
version = "2.4.0"
1616
1717
# By default, this module will not create a resource group
1818
# proivde a name to use an existing resource group, specify the existing resource group name,

examples/storage_account_with_fileshares/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ provider "azurerm" {
55

66
module "storage" {
77
source = "kumarvna/storage/azurerm"
8-
version = "2.3.0"
8+
version = "2.4.0"
99

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,

0 commit comments

Comments
 (0)