Created
January 18, 2025 21:20
-
-
Save egonSchiele/04278baccb63693f4f31aeb88fa8bb8e to your computer and use it in GitHub Desktop.
create a VPC in terraform
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
terraform { | |
required_providers { | |
aws = { | |
source = "hashicorp/aws" | |
version = "~> 5.0" | |
} | |
} | |
} | |
provider "aws" { | |
region = "us-west-1" | |
} | |
resource "aws_vpc" "main" { | |
cidr_block = "10.0.0.0/16" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment