Skip to content
Snippets Groups Projects
Commit d2546eca authored by Timothée AUFORT's avatar Timothée AUFORT
Browse files

feat(terraform): update workspace key prefix and authorize provider automatic upgrades

parent a0aa0711
No related branches found
No related tags found
No related merge requests found
terraform { terraform {
backend "s3" { backend "s3" {
bucket = "edebrye-cloud-monitor-tfstate" bucket = "edebrye-cloud-monitor-tfstate"
key = "cloud-monitor-app.tfstate" key = "cloud-monitor-app.tfstate"
region = "eu-west-1" region = "eu-west-1"
encrypt = true encrypt = true
dynamodb_table = "edebrye-cloud-monitor-tfstate-lock" dynamodb_table = "edebrye-cloud-monitor-tfstate-lock"
workspace_key_prefix = ""
} }
required_providers { required_providers {
aws = { aws = {
version = ">= 3.30.0" version = "~> 3.30"
source = "hashicorp/aws" source = "hashicorp/aws"
} }
archive = { archive = {
version = ">=2.1.0" version = "~> 2.1"
source = "hashicorp/archive" source = "hashicorp/archive"
} }
} }
...@@ -49,4 +50,4 @@ locals { ...@@ -49,4 +50,4 @@ locals {
} }
} }
data "aws_region" "current" {} data "aws_region" "current" {}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment