github.com/dahs81/otto@v0.2.1-0.20160126165905-6400716cf085/builtin/foundation/consul/data/aws-vpc-public-private/deploy/variables.tf (about) 1 #-------------------------------------------------------------------- 2 # Access Info 3 #-------------------------------------------------------------------- 4 5 variable "aws_access_key" { 6 description = "Access key for AWS" 7 } 8 9 variable "aws_secret_key" { 10 description = "Secret key for AWS" 11 } 12 13 variable "region" { 14 description = "Region where we will operate." 15 } 16 17 #-------------------------------------------------------------- 18 # General settings 19 #-------------------------------------------------------------- 20 21 variable "ami" { 22 description = "AMI to launch with Consul" 23 default = "ami-7f6a1f1a" 24 } 25 26 variable "bastion_host" { 27 description = "SSH bastion host" 28 } 29 30 variable "bastion_user" { 31 description = "SSH bastion user" 32 } 33 34 variable "key_name" { 35 description = "SSH key name" 36 } 37 38 variable "subnet-private" { 39 description = "Private subnet" 40 } 41 42 variable "vpc_id" { 43 description = "VPC ID" 44 }