Skip to content

Commit

Permalink
🐛 Fix broken Terraform backend config (#468)
Browse files Browse the repository at this point in the history
It looks like there was an update to the `s3` Terraform backend that
broke its ability to connect to Scaleway's S3 API. This PR fixes the
problem so that we can use Terraform again.
  • Loading branch information
busser authored Apr 4, 2024
1 parent ded3443 commit 08b21d1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions terraform/layers/aws-secrets-manager/_settings.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ terraform {
# skip certain validation steps.
skip_credentials_validation = true
skip_region_validation = true
skip_requesting_account_id = true
}

# This layer requires that certain providers be configured by the caller.
Expand Down
1 change: 1 addition & 0 deletions terraform/layers/azure-keyvault/_settings.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ terraform {
# skip certain validation steps.
skip_credentials_validation = true
skip_region_validation = true
skip_requesting_account_id = true
}

# This layer requires that certain providers be configured by the caller.
Expand Down
1 change: 1 addition & 0 deletions terraform/layers/gcp-secret-manager/_settings.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ terraform {
# skip certain validation steps.
skip_credentials_validation = true
skip_region_validation = true
skip_requesting_account_id = true
}

# This layer requires that certain providers be configured by the caller.
Expand Down
1 change: 1 addition & 0 deletions terraform/layers/scw-secret-manager/_settings.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ terraform {
# skip certain validation steps.
skip_credentials_validation = true
skip_region_validation = true
skip_requesting_account_id = true
}

# This layer requires that certain providers be configured by the caller.
Expand Down

0 comments on commit 08b21d1

Please sign in to comment.