Skip to content

Commit 4859e81

Browse files
Updated variable of vpn_server_instance_type (#2)
1 parent 6cf8db3 commit 4859e81

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Security scanning is graciously provided by Prowler. Prowler is the leading full
161161
| <a name="input_vpc_cidr"></a> [vpc\_cidr](#input\_vpc\_cidr) | The CIDR block of the VPC | `string` | `"10.0.0.0/16"` | no |
162162
| <a name="input_vpn_key_pair_name"></a> [vpn\_key\_pair\_name](#input\_vpn\_key\_pair\_name) | Specify the name of AWS Keypair to be used for VPN Server | `string` | `""` | no |
163163
| <a name="input_vpn_server_enabled"></a> [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 |
164-
| <a name="input_vpn_server_instance_type"></a> [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 |
164+
| <a name="input_vpn_server_instance_type"></a> [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 |
165165

166166
## Outputs
167167

examples/complete-vpc-with-vpn/README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ No requirements.
2525

2626
## Providers
2727

28-
| Name | Version |
29-
|------|---------|
30-
| <a name="provider_aws"></a> [aws](#provider\_aws) | n/a |
28+
No providers.
3129

3230
## Modules
3331

@@ -38,9 +36,7 @@ No requirements.
3836

3937
## Resources
4038

41-
| Name | Type |
42-
|------|------|
43-
| [aws_availability_zones.available](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/availability_zones) | data source |
39+
No resources.
4440

4541
## Inputs
4642

examples/complete-vpc-with-vpn/main.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ locals {
1010
vpc_cidr = "10.10.0.0/16"
1111
}
1212

13-
data "aws_availability_zones" "available" {}
14-
1513
module "key_pair_vpn" {
1614
source = "squareops/keypair/aws"
1715
key_name = format("%s-%s-vpn", local.environment, local.name)

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ variable "vpn_server_enabled" {
7979

8080
variable "vpn_server_instance_type" {
8181
description = "EC2 instance Type for VPN Server, Only amd64 based instance type are supported eg. t2.medium, t3.micro, c5a.large etc. "
82-
default = ""
82+
default = "t3a.small"
8383
type = string
8484
}
8585

0 commit comments

Comments
 (0)