Skip to content

Commit

Permalink
adding support to terraform v0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
kumarvit committed Sep 17, 2020
1 parent 7941e42 commit 1d0ce4b
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 12 deletions.
23 changes: 19 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ These types of resources are supported:
```hcl
module "storage" {
source = "kumarvna/storage/azurerm"
version = "2.0.0"
version = "2.1.0"
# 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,
Expand Down Expand Up @@ -114,7 +114,7 @@ The default action set to `Allow` when no network rules matched. A `subnet_ids`
```hcl
module "storage" {
source = "kumarvna/storage/azurerm"
version = "2.0.0"
version = "2.1.0"
# .... omitted
Expand Down Expand Up @@ -147,7 +147,7 @@ This module supports the implementation of storage lifecycle management. If spec
```hcl
module "storage" {
source = "kumarvna/storage/azurerm"
version = "2.0.0"
version = "2.1.0"
# .... omitted
Expand Down Expand Up @@ -208,7 +208,7 @@ End Date of the Project|Date when this application, workload, or service is plan
```hcl
module "key-vault" {
source = "kumarvna/storage/azurerm"
version = "2.0.0"
version = "2.1.0"
# ... omitted
Expand All @@ -222,6 +222,21 @@ module "key-vault" {
}
```

## Requirements

| Name | Version |
|------|---------|
| terraform | >= 0.13 |
| azurerm | ~> 2.27 |

## Providers

| Name | Version |
|------|---------|
| azurerm | ~> 2.27 |
| null | n/a |
| random | n/a |

## Inputs

Name | Description | Type | Default
Expand Down
6 changes: 3 additions & 3 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Terraform Module to create an Azure storage account with a set of containers (an
```hcl
module "storage" {
source = "kumarvna/storage/azurerm"
version = "2.0.0"
version = "2.1.0"
# 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,
Expand Down Expand Up @@ -44,7 +44,7 @@ module "storage" {
```hcl
module "storage" {
source = "kumarvna/storage/azurerm"
version = "2.0.0"
version = "2.1.0"
# 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,
Expand Down Expand Up @@ -79,7 +79,7 @@ module "storage" {
```hcl
module "storage" {
source = "kumarvna/storage/azurerm"
version = "2.0.0"
version = "2.1.0"
# 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,
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example is to create a storage account with containers, SMB file shares, ta
```hcl
module "storage" {
source = "kumarvna/storage/azurerm"
version = "2.0.0"
version = "2.1.0"
# 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,
Expand Down
2 changes: 1 addition & 1 deletion examples/storage_account_with_containers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Simple configuration to create a Azure storage account with Containers.
```hcl
module "storage" {
source = "kumarvna/storage/azurerm"
version = "2.0.0"
version = "2.1.0"
# 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,
Expand Down
2 changes: 1 addition & 1 deletion examples/storage_account_with_containers/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "storage" {
source = "kumarvna/storage/azurerm"
version = "2.0.0"
version = "2.1.0"

# 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,
Expand Down
2 changes: 1 addition & 1 deletion examples/storage_account_with_fileshares/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Simple configuration to create a Azure storage account with SMB file shares.
```hcl
module "storage" {
source = "kumarvna/storage/azurerm"
version = "2.0.0"
version = "2.1.0"
# 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,
Expand Down
2 changes: 1 addition & 1 deletion examples/storage_account_with_fileshares/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "storage" {
source = "kumarvna/storage/azurerm"
version = "2.0.0"
version = "2.1.0"

# 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,
Expand Down

0 comments on commit 1d0ce4b

Please sign in to comment.