github.com/dahs81/otto@v0.2.1-0.20160126165905-6400716cf085/builtin/app/java/data/aws-simple/deploy/main.tf.tpl (about)

     1  # Generated by Otto, do not edit manually
     2  
     3  provider "aws" {
     4      access_key = "${var.aws_access_key}"
     5      secret_key = "${var.aws_secret_key}"
     6      region = "${var.aws_region}"
     7  }
     8  
     9  # Deploy a set of instances
    10  resource "aws_instance" "{{ name }}" {
    11      ami = "${var.ami}"
    12      instance_type = "${var.instance_type}"
    13      subnet_id = "${var.subnet_id}"
    14  
    15      tags {
    16          Name = "{{ name }}"
    17      }
    18  }