Skip to content
This repository was archived by the owner on Jul 20, 2024. It is now read-only.

Commit 7466a62

Browse files
committed
Change description of variables
1 parent c36eb16 commit 7466a62

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ This is an open source software. Feel free to open issues and pull requests.
7878
| Name | Description | Type | Default | Required |
7979
|------|-------------|:----:|:-----:|:-----:|
8080
| image\_id | AMI of the NAT instance | string | `"ami-04b762b4289fba92b"` | no |
81-
| instance\_types | Candidates of instance type of the NAT instance | list | `[ "t3.nano", "t3a.nano" ]` | no |
82-
| key\_name | Name of the key pair for the NAT instance | string | `""` | no |
83-
| name | Name of this NAT instance | string | n/a | yes |
84-
| private\_route\_table\_ids | List of ID of the route tables for the private subnets. You set this to assign the each default route to the NAT instance | list | `[]` | no |
85-
| private\_subnets\_cidr\_blocks | List of CIDR blocks of the private subnets | string | n/a | yes |
86-
| public\_subnet | ID of the public subnet for the NAT instance | string | n/a | yes |
81+
| instance\_types | Candidates of spot instance type for the NAT instance. This is used in the mixed instances policy | list | `[ "t3.nano", "t3a.nano" ]` | no |
82+
| key\_name | Name of the key pair for the NAT instance. You can set this to assign the key pair to the NAT instance | string | `""` | no |
83+
| name | Name for all the resources as identifier | string | n/a | yes |
84+
| private\_route\_table\_ids | List of ID of the route tables for the private subnets. You can set this to assign the each default route to the NAT instance | list | `[]` | no |
85+
| private\_subnets\_cidr\_blocks | List of CIDR blocks of the private subnets. The NAT instance accepts connections from this subnets | string | n/a | yes |
86+
| public\_subnet | ID of the public subnet to place the NAT instance | string | n/a | yes |
8787
| vpc\_id | ID of the VPC | string | n/a | yes |
8888

8989
## Outputs

variables.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
variable "name" {
2-
description = "Name of this NAT instance"
2+
description = "Name for all the resources as identifier"
33
}
44

55
variable "vpc_id" {
66
description = "ID of the VPC"
77
}
88

99
variable "public_subnet" {
10-
description = "ID of the public subnet for the NAT instance"
10+
description = "ID of the public subnet to place the NAT instance"
1111
}
1212

1313
variable "private_subnets_cidr_blocks" {
14-
description = "List of CIDR blocks of the private subnets"
14+
description = "List of CIDR blocks of the private subnets. The NAT instance accepts connections from this subnets"
1515
}
1616

1717
variable "private_route_table_ids" {
18-
description = "List of ID of the route tables for the private subnets. You set this to assign the each default route to the NAT instance"
18+
description = "List of ID of the route tables for the private subnets. You can set this to assign the each default route to the NAT instance"
1919
default = []
2020
}
2121

@@ -26,11 +26,11 @@ variable "image_id" {
2626
}
2727

2828
variable "instance_types" {
29-
description = "Candidates of instance type of the NAT instance"
29+
description = "Candidates of spot instance type for the NAT instance. This is used in the mixed instances policy"
3030
default = ["t3.nano", "t3a.nano"]
3131
}
3232

3333
variable "key_name" {
34-
description = "Name of the key pair for the NAT instance"
34+
description = "Name of the key pair for the NAT instance. You can set this to assign the key pair to the NAT instance"
3535
default = ""
3636
}

0 commit comments

Comments
 (0)