github.com/dahs81/otto@v0.2.1-0.20160126165905-6400716cf085/builtin/app/java/data/aws-simple/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 "aws_region" { 14 description = "Region where we will operate." 15 } 16 17 #-------------------------------------------------------------------- 18 # Deploy Info 19 #-------------------------------------------------------------------- 20 21 variable "ami" { 22 description = "AMI to deploy" 23 } 24 25 variable "instance_type" { 26 description = "Instance type" 27 default = "t2.micro" 28 } 29 30 variable "subnet_id" { 31 description = "Subnet to deploy into" 32 }