Add skip validation to tf backend

This commit is contained in:
2024-09-14 21:36:28 +02:00
parent 607b5a623c
commit 9f0d021112

View File

@@ -12,8 +12,10 @@ terraform {
required_version = ">= 0.13" required_version = ">= 0.13"
backend "s3" { backend "s3" {
bucket = "value" bucket = "auberon-tfstate"
key = "terraform.tfstate" key = "terraform.tfstate"
skip_credentials_validation = true
skip_region_validation = true
} }
} }