Skip to content

Commit

Permalink
Merge pull request #4 from 7SOATSquad30/feature/network
Browse files Browse the repository at this point in the history
fix: correção vpc
  • Loading branch information
otavio-code authored Sep 27, 2024
2 parents 221c65b + 7780650 commit 7e83b1c
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 7e83b1c

Please sign in to comment.