Skip to content

Commit fdc776a

Browse files
committed
adding support to terraform v0.13
1 parent c1fbdf9 commit fdc776a

File tree

6 files changed

+25
-15
lines changed

6 files changed

+25
-15
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This Terraform Module creates a Key Vault also adds required access policies for
99
```hcl
1010
module "key-vault" {
1111
source = "kumarvna/key-vault/azurerm"
12-
version = "1.0.0"
12+
version = "2.0.0"
1313
1414
# Resource Group and Key Vault pricing tier details
1515
resource_group_name = "rg-demo-project-shared-westeurope-001"
@@ -73,7 +73,7 @@ Default action is set to `Allow` when no network rules matched. A `virtual_netwo
7373
```hcl
7474
module "key-vault" {
7575
source = "kumarvna/key-vault/azurerm"
76-
version = "1.0.0"
76+
version = "2.0.0"
7777
7878
# .... omitted
7979
@@ -155,7 +155,7 @@ End Date of the Project|Date when this application, workload, or service is plan
155155
```hcl
156156
module "key-vault" {
157157
source = "kumarvna/key-vault/azurerm"
158-
version = "1.0.0"
158+
version = "2.0.0"
159159
160160
# ... omitted
161161

examples/complete/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Terraform Module to create a Key Vault also adds required access policies for AD
77
```hcl
88
module "key-vault" {
99
source = "kumarvna/key-vault/azurerm"
10-
version = "1.0.0"
10+
version = "2.0.0"
1111
1212
# Resource Group and Key Vault pricing tier details
1313
resource_group_name = "rg-demo-project-shared-westeurope-001"

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "key-vault" {
22
source = "kumarvna/key-vault/azurerm"
3-
version = "1.0.0"
3+
version = "2.0.0"
44

55
# Resource Group and Key Vault pricing tier details
66
resource_group_name = "rg-demo-project-shared-westeurope-001"

provider.tf

Lines changed: 0 additions & 8 deletions
This file was deleted.

variables.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ variable "enabled_for_template_deployment" {
3030

3131
variable "enable_soft_delete" {
3232
description = " Should Soft Delete be enabled for this Key Vault?"
33-
default = false
33+
default = true
3434
}
3535

3636
variable "enable_purge_protection" {
@@ -75,4 +75,3 @@ variable "tags" {
7575
type = map(string)
7676
default = {}
7777
}
78-

versions.tf

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
terraform {
2+
required_providers {
3+
azuread = {
4+
source = "hashicorp/azuread"
5+
}
6+
azurerm = {
7+
source = "hashicorp/azurerm"
8+
version = "~>2.27.0"
9+
}
10+
random = {
11+
source = "hashicorp/random"
12+
}
13+
}
14+
required_version = ">= 0.13"
15+
}
16+
17+
provider "azurerm" {
18+
features {}
19+
}

0 commit comments

Comments
 (0)