Skip to content

Instantly share code, notes, and snippets.

View felipteixeira's full-sized avatar
🚀
Learning

Felipe Teixeira felipteixeira

🚀
Learning
View GitHub Profile
data "aws_ami" "ubuntu" {
most_recent = true
filter {
name = "name"
values = ["IaaSWeek-${var.hash_commit}"]
}
owners = ["486576470157"] # My User
}
provider "aws" {
region = "us-east-1"
version = "~> 2.0"
}
terraform {
backend "s3" {