github.com/dahs81/otto@v0.2.1-0.20160126165905-6400716cf085/builtin/infra/aws/data/simple/outputs.tf (about) 1 # Generated by Otto, do not edit manually. 2 # 3 # Otto uses outputs as the method for transferring data from Terraform 4 # back into Otto that will be used for deploys, future infrastructure 5 # change, etc. 6 # 7 # Because of the importance of these values for Otto to function, care 8 # should be taken if these are modified. 9 10 output "region" { 11 value = "${var.aws_region}" 12 } 13 14 output "vpc_id" { 15 value = "${aws_vpc.main.id}" 16 } 17 18 output "vpc_cidr" { 19 value = "${aws_vpc.main.cidr_block}" 20 } 21 22 output "subnet_public" { 23 value = "${aws_subnet.public.id}" 24 } 25 26 output "key_name" { 27 value = "${aws_key_pair.main.id}" 28 } 29 30 output "infra_id" { 31 value = "${element(split("-", aws_vpc.main.id), 1)}" 32 }