Skip to content
This repository has been archived by the owner on Jun 22, 2021. It is now read-only.

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 21, 2020
1 parent 03fe2d4 commit 4754815
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 12 deletions.
23 changes: 15 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ Type of resources are supported:

```hcl
module "vnet" {
source = "github.com/tietoevry-infra-as-code/terraform-azurerm-vnet?ref=v2.0.0"
source = "kumarvna/vnet/azurerm"
version = "2.0.0"
# By default, this module will not create a resource group, proivde the name here
# to use an existing resource group, specify the existing resource group name,
Expand Down Expand Up @@ -130,7 +131,8 @@ This module supports enabling the service endpoint of your choosing under the vi

```hcl
module "vnet" {
source = "github.com/tietoevry-infra-as-code/terraform-azurerm-vnet?ref=v2.0.0"
source = "kumarvna/vnet/azurerm"
version = "2.0.0"
# .... omitted
Expand All @@ -157,7 +159,8 @@ This module supports enabling the service delegation of your choosing under the

```hcl
module "vnet" {
source = "github.com/tietoevry-infra-as-code/terraform-azurerm-vnet?ref=v2.0.0"
source = "kumarvna/vnet/azurerm"
version = "2.0.0"
# .... omitted
Expand Down Expand Up @@ -190,7 +193,8 @@ This module Enable or Disable network policies for the private link endpoint on

```hcl
module "vnet" {
source = "github.com/tietoevry-infra-as-code/terraform-azurerm-vnet?ref=v2.0.0"
source = "kumarvna/vnet/azurerm"
version = "2.0.0"
# .... omitted
Expand Down Expand Up @@ -219,7 +223,8 @@ This module Enable or Disable network policies for the private link service on t

```hcl
module "vnet" {
source = "github.com/tietoevry-infra-as-code/terraform-azurerm-vnet?ref=v2.0.0"
source = "kumarvna/vnet/azurerm"
version = "2.0.0"
# .... omitted
Expand Down Expand Up @@ -254,7 +259,8 @@ In the Source and Destination columns, `VirtualNetwork`, `AzureLoadBalancer`, an

```hcl
module "vnet" {
source = "github.com/tietoevry-infra-as-code/terraform-azurerm-vnet?ref=v2.0.0"
source = "kumarvna/vnet/azurerm"
version = "2.0.0"
# .... omitted
Expand Down Expand Up @@ -315,7 +321,8 @@ End Date of the Project|Date when this application, workload, or service is plan
```hcl
module "vnet" {
source = "github.com/tietoevry-infra-as-code/terraform-azurerm-vnet?ref=v2.0.0"
source = "kumarvna/vnet/azurerm"
version = "2.0.0"
# ... omitted
Expand Down Expand Up @@ -390,7 +397,7 @@ Name | Description

## Authors

Originally created by [Kumaraswamy Vithanala](mailto:kumarvna@gmail.com)
Originally created by [Kumaraswamy Vithanala](mailto:kumaraswamy.vithanala@tieto.com)

## Other resources

Expand Down
3 changes: 2 additions & 1 deletion examples/complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ Following example to create a virtual network with subnets, NSG, DDoS protection

```hcl
module "vnet" {
source = "github.com/tietoevry-infra-as-code/terraform-azurerm-vnet?ref=v2.0.0"
source = "kumarvna/vnet/azurerm"
version = "2.0.0"
# By default, this module will not create a resource group, proivde the name here
# to use an existing resource group, specify the existing resource group name,
Expand Down
3 changes: 2 additions & 1 deletion examples/complete/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module "vnet" {
source = "github.com/tietoevry-infra-as-code/terraform-azurerm-vnet?ref=v2.0.0"
source = "kumarvna/vnet/azurerm"
version = "2.0.0"

# By default, this module will not create a resource group, proivde the name here
# to use an existing resource group, specify the existing resource group name,
Expand Down
3 changes: 2 additions & 1 deletion examples/simple_VNet_exmaple/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ Following example to create a simple virtual network with subnets and network wa

```hcl
module "vnet" {
source = "github.com/tietoevry-infra-as-code/terraform-azurerm-vnet?ref=v2.0.0"
source = "kumarvna/vnet/azurerm"
version = "2.0.0"
# By default, this module will not create a resource group, proivde the name here
# to use an existing resource group, specify the existing resource group name,
Expand Down
3 changes: 2 additions & 1 deletion examples/simple_VNet_exmaple/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module "vnet" {
source = "github.com/tietoevry-infra-as-code/terraform-azurerm-vnet?ref=v2.0.0"
source = "kumarvna/vnet/azurerm"
version = "2.0.0"

# By default, this module will not create a resource group, proivde the name here
# to use an existing resource group, specify the existing resource group name,
Expand Down

0 comments on commit 4754815

Please sign in to comment.