diff options
author | Peter Mikus <peter.mikus@protonmail.ch> | 2023-10-02 16:11:10 +0200 |
---|---|---|
committer | Peter Mikus <peter.mikus@protonmail.ch> | 2023-10-02 14:12:13 +0000 |
commit | 50d88f59f84265a7a57fc8cd2c8591517bca403a (patch) | |
tree | 51dfeed9b3f6c6b4e4d4eaf69e8995c234b8251c /jjb | |
parent | 3e54e053d53d9112a0e173d5ae87c116257ab578 (diff) |
fix(core): Pin terraform provider version
Signed-off-by: Peter Mikus <peter.mikus@protonmail.ch>
Change-Id: I6f243a8cf05c0d5242177f5ae8a4c99bbd83ebf3
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/scripts/terraform_s3_docs_ship.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/jjb/scripts/terraform_s3_docs_ship.sh b/jjb/scripts/terraform_s3_docs_ship.sh index d70fa6c91..7200cbf3c 100644 --- a/jjb/scripts/terraform_s3_docs_ship.sh +++ b/jjb/scripts/terraform_s3_docs_ship.sh @@ -18,6 +18,15 @@ echo "---> terraform_s3_docs_ship.sh" set -exuo pipefail cat >"/w/workspace/main.tf" <<'END_OF_TERRAFORM_SCRIPT' +terraform { + required_providers { + aws = { + source = "hashicorp/aws" + version = "5.18.1" + } + } +} + provider "aws" { region = "us-east-1" profile = "default" |