Skip to content

Commit

Permalink
Update main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
motatoes authored Jun 5, 2024
1 parent eb799c0 commit 2896d66
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions dev-vpc/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.24.0"
}
}
backend "s3" {
bucket = "digger-s3backend-quickstart-aws" # Change if a different S3 bucket name was used for the backend
/* Un-comment to use DynamoDB state locking
dynamodb_table = "digger-locktable-quickstart-aws" # Change if a different DynamoDB table name was used for backend
*/
key = "terraform/state"
region = "us-east-1"
}
}

resource "aws_ssm_parameter" "foo" {
name = "/dev/vpc"
type = "String"
Expand Down

0 comments on commit 2896d66

Please sign in to comment.