Commit be6220cf authored by Anton Babenko's avatar Anton Babenko Committed by GitHub

Merge pull request #7 from eheydrick/variable-descriptions

Improve variable descriptions
parents bd175b08 21144f80
...@@ -36,47 +36,47 @@ variable "elasticache_subnets" { ...@@ -36,47 +36,47 @@ variable "elasticache_subnets" {
} }
variable "create_database_subnet_group" { variable "create_database_subnet_group" {
description = "Controls, if should database subnet group be created." description = "Controls if database subnet group should be created"
default = true default = true
} }
variable "azs" { variable "azs" {
description = "A list of Availability zones in the region" description = "A list of availability zones in the region"
default = [] default = []
} }
variable "enable_dns_hostnames" { variable "enable_dns_hostnames" {
description = "should be true if you want to use private DNS within the VPC" description = "Should be true if you want to use private DNS within the VPC"
default = false default = false
} }
variable "enable_dns_support" { variable "enable_dns_support" {
description = "should be true if you want to use private DNS within the VPC" description = "Should be true if you want to use private DNS within the VPC"
default = false default = false
} }
variable "enable_nat_gateway" { variable "enable_nat_gateway" {
description = "should be true if you want to provision NAT Gateways for each of your private networks" description = "Should be true if you want to provision NAT Gateways for each of your private networks"
default = false default = false
} }
variable "single_nat_gateway" { variable "single_nat_gateway" {
description = "should be true if you want to provision a single shared NAT Gateway across all of your private networks" description = "Should be true if you want to provision a single shared NAT Gateway across all of your private networks"
default = false default = false
} }
variable "enable_dynamodb_endpoint" { variable "enable_dynamodb_endpoint" {
description = "should be true if you want to provision an DynamoDB endpoint to the VPC" description = "Should be true if you want to provision a DynamoDB endpoint to the VPC"
default = false default = false
} }
variable "enable_s3_endpoint" { variable "enable_s3_endpoint" {
description = "should be true if you want to provision an S3 endpoint to the VPC" description = "Should be true if you want to provision an S3 endpoint to the VPC"
default = false default = false
} }
variable "map_public_ip_on_launch" { variable "map_public_ip_on_launch" {
description = "should be false if you do not want to auto-assign public IP on launch" description = "Should be false if you do not want to auto-assign public IP on launch"
default = true default = true
} }
...@@ -101,7 +101,7 @@ variable "public_subnet_tags" { ...@@ -101,7 +101,7 @@ variable "public_subnet_tags" {
} }
variable "private_subnet_tags" { variable "private_subnet_tags" {
description = "Additional tags for the public subnets" description = "Additional tags for the private subnets"
default = {} default = {}
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment