Sha256: 74650313b236988a074c3ccaab43ffaf991ac2f5b9c62cd9f2cc72d87d5a3ea9
Contents?: true
Size: 709 Bytes
Versions: 87
Compression:
Stored size: 709 Bytes
Contents
# Region to create infrastructure in variable "aws_region" { type = "string" default = "us-west-2" } variable "aws_instance_type" { type = "string" default = "t2.micro" } # Used to indicidate whether the environment should be treated as "prod" # This is mainly used for the `X-Production` AWS tag. variable "production" { default = "false" } # SSH Connection info used for remote provisioning instances variable "connection_agent" { description = "Set to false to disable using ssh-agent to authenticate" default = false } variable "connection_private_key" { description = "File path to AWS keypair private key to provision with" default = "~/.ssh/es-infrastructure.pem" }
Version data entries
87 entries across 35 versions & 1 rubygems