Skip to content

Instantly share code, notes, and snippets.

@mooyoul
Created December 28, 2016 20:38
Show Gist options
  • Save mooyoul/13e4241125cd98dd2ff9cc1fb8054127 to your computer and use it in GitHub Desktop.
Save mooyoul/13e4241125cd98dd2ff9cc1fb8054127 to your computer and use it in GitHub Desktop.
Terraform 101 - Maps
variable "access_key" {}
variable "secret_key" {}
variable "region" {
default = "ap-northeast-2"
}
variable "amis" {
type = "map"
default = {
ap-northeast-2 = "ami-983ce8f6"
us-west-2 = "ami-06b94666"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment