Last active
August 9, 2016 16:59
-
-
Save nicusX/27a3d07a55241f915839351ad1ad6a97 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "aws_vpc" "kubernetes" { | |
cidr_block = "10.43.0.0/16" | |
enable_dns_hostnames = true | |
} | |
resource "aws_subnet" "kubernetes" { | |
vpc_id = "${aws_vpc.kubernetes.id}" | |
cidr_block = "10.43.0.0/16" | |
availability_zone = "eu-west-1a" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment