Skip to content

Commit

Permalink
fix: correção vpc
Browse files Browse the repository at this point in the history
  • Loading branch information
otavio-code committed Sep 27, 2024
1 parent 8d6cef9 commit 7780650
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
provider "aws" {
region = var.aws_region
}

terraform {
backend "s3" {
bucket = "aws-fastfood-terraform-tfstate"
key = "fast-food-net/terraform.tfstate"
region = "us-east-1"
}
}

# Criar a VPC
resource "aws_vpc" "main" {
cidr_block = var.vpc_cidr
Expand Down

0 comments on commit 7780650

Please sign in to comment.