Skip to content

Instantly share code, notes, and snippets.

@amitizle

amitizle/main.tf Secret

Created October 22, 2020 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amitizle/d3f76c868f7dbd1e18c5f021f6066f42 to your computer and use it in GitHub Desktop.
Save amitizle/d3f76c868f7dbd1e18c5f021f6066f42 to your computer and use it in GitHub Desktop.
terraform {
required_version = "~>0.13"
}
provider "aws" {
version = "~> 3.7.0"
region = "eu-central-1"
}
resource "aws_instance" "this" {
ami = "ami-052eaddc8881bf2ec"
instance_type = var.instance_type
tags = {
Terraform = "true"
Name = "test-instance"
Environment = "dev"
Owner = "salto"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment