Difference between revisions of "AWS instance example creating VPC"
Jump to navigation
Jump to search
| Line 28: | Line 28: | ||
== See also == | == See also == | ||
| − | * {{Terraform}} | + | * {{Terraform VPC}} |
[[Category:Terraform]] | [[Category:Terraform]] | ||
Revision as of 21:16, 6 June 2022
provider "aws" { access_key = "ACCESS_KEY_HERE" secret_key = "SECRET_KEY_HERE" region = "us-east-1" profile = "your_profile_name" } resource "aws_instance" "example" { ami = "ami-2757f631" instance_type = "t2.micro" subnet_id = "${aws_subnet.us-east-1a-public.id}" }
resource "aws_vpc" "example" {
cidr_block = "10.0.0.0/16"
enable_dns_hostnames = true
enable_dns_support = true
}
resource "aws_subnet" "us-east-1a-public" {
vpc_id = "${aws_vpc.example.id}"
cidr_block = "10.0.1.0/25"
availability_zone = "us-east-1a"
}
See also
Advertising: