diff --git a/README.md b/README.md index a380724..3734bd8 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ Security scanning is graciously provided by Prowler. Prowler is the leading full | [vpc\_cidr](#input\_vpc\_cidr) | The CIDR block of the VPC | `string` | `"10.0.0.0/16"` | no | | [vpn\_key\_pair\_name](#input\_vpn\_key\_pair\_name) | Specify the name of AWS Keypair to be used for VPN Server | `string` | `""` | no | | [vpn\_server\_enabled](#input\_vpn\_server\_enabled) | Set to true if you want to deploy VPN Gateway resource and attach it to the VPC | `bool` | `false` | no | -| [vpn\_server\_instance\_type](#input\_vpn\_server\_instance\_type) | EC2 instance Type for VPN Server, Only amd64 based instance type are supported eg. t2.medium, t3.micro, c5a.large etc. | `string` | `""` | no | +| [vpn\_server\_instance\_type](#input\_vpn\_server\_instance\_type) | EC2 instance Type for VPN Server, Only amd64 based instance type are supported eg. t2.medium, t3.micro, c5a.large etc. | `string` | `"t3a.small"` | no | ## Outputs diff --git a/examples/complete-vpc-with-vpn/README.md b/examples/complete-vpc-with-vpn/README.md index 392fc53..cc4a4b7 100644 --- a/examples/complete-vpc-with-vpn/README.md +++ b/examples/complete-vpc-with-vpn/README.md @@ -25,9 +25,7 @@ No requirements. ## Providers -| Name | Version | -|------|---------| -| [aws](#provider\_aws) | n/a | +No providers. ## Modules @@ -38,9 +36,7 @@ No requirements. ## Resources -| Name | Type | -|------|------| -| [aws_availability_zones.available](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/availability_zones) | data source | +No resources. ## Inputs diff --git a/examples/complete-vpc-with-vpn/main.tf b/examples/complete-vpc-with-vpn/main.tf index 87f9bba..9d162a3 100644 --- a/examples/complete-vpc-with-vpn/main.tf +++ b/examples/complete-vpc-with-vpn/main.tf @@ -10,8 +10,6 @@ locals { vpc_cidr = "10.10.0.0/16" } -data "aws_availability_zones" "available" {} - module "key_pair_vpn" { source = "squareops/keypair/aws" key_name = format("%s-%s-vpn", local.environment, local.name) diff --git a/variables.tf b/variables.tf index b190746..967c8cd 100644 --- a/variables.tf +++ b/variables.tf @@ -79,7 +79,7 @@ variable "vpn_server_enabled" { variable "vpn_server_instance_type" { description = "EC2 instance Type for VPN Server, Only amd64 based instance type are supported eg. t2.medium, t3.micro, c5a.large etc. " - default = "" + default = "t3a.small" type = string }