Skip to content

Instantly share code, notes, and snippets.

View Pierrotws's full-sized avatar

Pierre Sauvage Pierrotws

View GitHub Profile
@Pierrotws
Pierrotws / main.tf
Created October 21, 2020 12:50 — forked from geekbass/main.tf
Example Infra Module
# Find Public IP
data "http" "whatismyip" {
url = "http://whatismyip.akamai.com/"
}
# Begin Variables
variable "aws_ami" {
description = "AMI to use"
default = "ami-4bf3d731"
}