Skip to content

Commit

Permalink
Merge pull request kumarvna#8 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 31, 2021
2 parents 4d4fa6f + eae99cb commit 17dab48
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 14 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# .tfstate files
*.tfstate
*.tfstate.*
*.terraform.lock.hcl

# Crash log files
crash.log
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Types of resources are supported:
```hcl
module "vpn-gateway" {
source = "kumarvna/vpn-gateway/azurerm"
version = "1.0.0"
version = "1.1.0"
# Resource Group, location, VNet and Subnet details
# IPSec Site-to-Site connection configuration requirements
Expand Down Expand Up @@ -136,7 +136,7 @@ End Date of the Project|Date when this application, workload, or service is plan
```hcl
module "vnet" {
source = "kumarvna/vpn-gateway/azurerm"
version = "1.0.0"
version = "1.1.0"
# ... omitted
Expand All @@ -155,13 +155,13 @@ module "vnet" {
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
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 a Virtual Network Gateway to send encrypted traffic b
```hcl
module "vpn-gateway" {
source = "kumarvna/vpn-gateway/azurerm"
version = "1.0.0"
version = "1.1.0"
# Resource Group, location, VNet and Subnet details
resource_group_name = "rg-shared-westeurope-01"
Expand Down Expand Up @@ -39,7 +39,7 @@ module "vpn-gateway" {
```hcl
module "vpn-gateway" {
source = "kumarvna/vpn-gateway/azurerm"
version = "1.0.0"
version = "1.1.0"
# Resource Group, location, VNet and Subnet details
# IPSec Site-to-Site connection configuration requirements
Expand Down Expand Up @@ -74,7 +74,7 @@ module "vpn-gateway" {
```hcl
module "vpn-gateway" {
source = "kumarvna/vpn-gateway/azurerm"
version = "1.0.0"
version = "1.1.0"
# Resource Group, location, VNet and Subnet details
resource_group_name = "rg-shared-westeurope-01"
Expand Down
2 changes: 1 addition & 1 deletion examples/expressroute/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Terraform module to create a Virtual Network Gateway to send encrypted traffic b
```hcl
module "vpn-gateway" {
source = "kumarvna/vpn-gateway/azurerm"
version = "1.0.0"
version = "1.1.0"
# Resource Group, location, VNet and Subnet details
resource_group_name = "rg-shared-westeurope-01"
Expand Down
2 changes: 1 addition & 1 deletion examples/expressroute/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "vpn-gateway" {
source = "kumarvna/vpn-gateway/azurerm"
version = "1.0.0"
version = "1.1.0"

# Resource Group, location, VNet and Subnet details
resource_group_name = "rg-shared-westeurope-01"
Expand Down
2 changes: 1 addition & 1 deletion examples/point-to-site/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Terraform module to create a Virtual Network Gateway to send encrypted traffic b
```hcl
module "vpn-gateway" {
source = "kumarvna/vpn-gateway/azurerm"
version = "1.0.0"
version = "1.1.0"
# Resource Group, location, VNet and Subnet details
resource_group_name = "rg-shared-westeurope-01"
Expand Down
3 changes: 2 additions & 1 deletion examples/point-to-site/main.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
module "vpn-gateway" {
source = "kumarvna/vpn-gateway/azurerm"
version = "1.0.0"
version = "1.1.0"

# Resource Group, location, VNet and Subnet details
resource_group_name = "rg-shared-westeurope-01"
virtual_network_name = "vnet-shared-hub-westeurope-001"
vpn_gateway_name = "shared-vpn-gw01"

# client configuration for Point-to-Site VPN Gateway connections
# this key here for example only. Use your own key pairs for security.
vpn_client_configuration = {
address_space = "10.1.0.0/24"
vpn_client_protocols = ["SSTP", "IkeV2"]
Expand Down
2 changes: 1 addition & 1 deletion examples/site-to-site/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Terraform module to create a Virtual Network Gateway to send encrypted traffic b
```hcl
module "vpn-gateway" {
source = "kumarvna/vpn-gateway/azurerm"
version = "1.0.0"
version = "1.1.0"
# Resource Group, location, VNet and Subnet details
# IPSec Site-to-Site connection configuration requirements
Expand Down
2 changes: 1 addition & 1 deletion examples/site-to-site/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "vpn-gateway" {
source = "kumarvna/vpn-gateway/azurerm"
version = "1.0.0"
version = "1.1.0"

# Resource Group, location, VNet and Subnet details
# IPSec Site-to-Site connection configuration requirements
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 17dab48

Please sign in to comment.