Skip to content

Commit

Permalink
Merge pull request #2 from kumarvna/develop
Browse files Browse the repository at this point in the history
adding terraform v0.15 support
  • Loading branch information
kumarvna authored May 16, 2021
2 parents ddf9a96 + 39d2199 commit 42b8fdf
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ These types of resources are supported:
```hcl
module "vnet-spoke" {
source = "kumarvna/caf-virtual-network-spoke/azurerm"
version = "2.0.0"
version = "2.1.0"
# By default, this module will create a resource group, proivde the name here
# to use an existing resource group, specify the existing resource group name,
Expand Down Expand Up @@ -142,7 +142,7 @@ This module supports enabling the service endpoint of your choosing under the vi
```hcl
module "vnet-spoke" {
source = "kumarvna/caf-virtual-network-spoke/azurerm"
version = "2.0.0"
version = "2.1.0"
# .... omitted
Expand Down Expand Up @@ -170,7 +170,7 @@ This module Enable or Disable network policies for the private link endpoint on
```hcl
module "vnet-spoke" {
source = "kumarvna/caf-virtual-network-spoke/azurerm"
version = "2.0.0"
version = "2.1.0"
# .... omitted
Expand Down Expand Up @@ -200,7 +200,7 @@ This module Enable or Disable network policies for the private link service on t
```hcl
module "vnet-spoke" {
source = "kumarvna/caf-virtual-network-spoke/azurerm"
version = "2.0.0"
version = "2.1.0"
# .... omitted
Expand Down Expand Up @@ -232,7 +232,7 @@ In the Source and Destination columns, `VirtualNetwork`, `AzureLoadBalancer`, an
```hcl
module "vnet-spoke" {
source = "kumarvna/caf-virtual-network-spoke/azurerm"
version = "2.0.0"
version = "2.1.0"
# .... omitted
Expand Down Expand Up @@ -309,7 +309,7 @@ End Date of the Project|Date when this application, workload, or service is plan
```hcl
module "vnet-spoke" {
source = "kumarvna/caf-virtual-network-spoke/azurerm"
version = "2.0.0"
version = "2.1.0"
# ... omitted
Expand All @@ -328,13 +328,13 @@ module "vnet-spoke" {
Name | Version
-----|--------
terraform | >= 0.13
azurerm | ~> 2.27
azurerm | >= 2.59.0

## Providers

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

## Inputs
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This is designed to quickly deploy hub and spoke architecture in the azure and f
```hcl
module "vnet-spoke" {
source = "kumarvna/caf-virtual-network-spoke/azurerm"
version = "2.0.0"
version = "2.1.0"
# By default, this module will create a resource group, proivde the name here
# to use an existing resource group, specify the existing resource group name,
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "vnet-spoke" {
source = "kumarvna/caf-virtual-network-spoke/azurerm"
version = "2.0.0"
version = "2.1.0"

# By default, this module will create a resource group, proivde the name here
# to use an existing resource group, specify the existing resource group name,
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>2.27.0"
version = ">= 2.59.0"
}
random = {
source = "hashicorp/random"
Expand Down

0 comments on commit 42b8fdf

Please sign in to comment.