python-terrascript/examples/TUAR_hello_world
Ilon Sjögren 7ac44e29fd Should generate docs without warnings, and keep examples updated 2020-09-11 16:32:35 +02:00
..
README.md Cleaning up 2020-01-08 22:40:20 +00:00
TUAR_hello_world.py Should generate docs without warnings, and keep examples updated 2020-09-11 16:32:35 +02:00

README.md

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"
      }
    }
  }
}