Skip to content

Instantly share code, notes, and snippets.

@timo-boehm
Created February 19, 2021 14:12
Show Gist options
  • Save timo-boehm/347f5439c3e03ff43654ce3d8823e26d to your computer and use it in GitHub Desktop.
Save timo-boehm/347f5439c3e03ff43654ce3d8823e26d to your computer and use it in GitHub Desktop.
locals {
common_tags = {
Service = "online-shop"
Owner = "janice-from-accounting"
}
}
locals {
ami = "ami-0233214e13e500f77"
instance_type = "t2.micro"
}
resource "aws_instance" "test_instance" {
ami = local.ami
instance_type = local.instance_type
tags = local.common_tags
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment