This option is visible in the subnet status, but only modifiable from another API call. Should we make it an attribute or another resource?
resource "aws_subnet" "main" {
vpc_id = "${aws_vpc.main.id}"
cidr_block = "10.0.1.0/24"
map_public_ip_on_launch = true
}
Depends on: mitchellh/goamz#95
Related to: #214, #252