File tree Expand file tree Collapse file tree
module/terraform-aws/setup
provision/rootfs/home/%/% Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ blackbox.framework.inventory.terraform-local() {
3636 fi
3737
3838 DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends python3-pip && {
39- pip install --break-system-packages terraform-local==0.20.1
39+ pip install --break-system-packages terraform-local==0.21.0
4040
4141 mv /usr/bin/terraform /usr/bin/tf && {
4242 ln -s /usr/local/bin/tflocal /usr/bin/terraform && {
Original file line number Diff line number Diff line change @@ -13,10 +13,9 @@ blackbox.module.terraform-aws.setup.provision() {
1313
1414 blackbox.framework.inventory.install.file main.tf < /blackbox/module/terraform-aws/setup/provision/rootfs/home/%/%/main.tf
1515 blackbox.framework.inventory.install.file script.sh < /blackbox/module/terraform-aws/setup/provision/rootfs/home/%/%/script.sh
16+ blackbox.framework.inventory.install.file versions.tf < /blackbox/module/terraform-aws/setup/provision/rootfs/home/%/%/versions.tf
1617
17- blackbox.framework.inventory.provision localstack && {
18- sleep 30
19- }
18+ blackbox.framework.inventory.provision localstack
2019
2120 tee -a /etc/hosts < <( printf " 127.0.0.1\teu-central-1.hackerrankaws.local\n" )
2221 tee -a /etc/environment < <( printf " AWS_ENDPOINT_URL=%s\n" " eu-central-1.hackerrankaws.local" )
Original file line number Diff line number Diff line change 1+ terraform {
2+ required_providers {
3+ aws = {
4+ source = " hashicorp/aws"
5+ version = " < 6"
6+ }
7+ }
8+ }
You can’t perform that action at this time.
0 commit comments