python-terrascript/examples/TUAR_hello_world/README.md

558 B

Terraform: Up & Running - Hello World

Hello World example adapted from Yevgeniy Brikman's book Terraform: Up & Running.

{
  "provider": {
    "aws": [
      {
        "region": "us-east-2",
        "version": "~>2.0"
      }
    ]
  },
  "resource": {
    "aws_instance": {
      "example": {
        "ami": "ami-0c55b159cbfafe1f0",
        "instance_type": "t2.micro"
      }
    }
  }
}