Skip to content

Instantly share code, notes, and snippets.

@nicusX
Last active August 9, 2016 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicusX/27a3d07a55241f915839351ad1ad6a97 to your computer and use it in GitHub Desktop.
Save nicusX/27a3d07a55241f915839351ad1ad6a97 to your computer and use it in GitHub Desktop.
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