Skip to content

Instantly share code, notes, and snippets.

@alevz257
Created August 19, 2019 10:47
Show Gist options
  • Save alevz257/203934e802dba19ef51a8275f770fbdf to your computer and use it in GitHub Desktop.
Save alevz257/203934e802dba19ef51a8275f770fbdf to your computer and use it in GitHub Desktop.
BuildSpec for codeBuild
version: 0.2
phases:
install:
runtime-versions:
python: 3.7
commands:
- "cd /usr/bin"
- "curl -O https://releases.hashicorp.com/terraform/0.12.6/terraform_0.12.6_linux_amd64.zip"
- "unzip terraform_0.12.6_linux_amd64.zip"
build:
commands:
- cd "$CODEBUILD_SRC_DIR"
- terraform init
- terraform apply -auto-approve
post_build:
commands:
- echo "Terraform completed on `date`"
artifacts:
files:
- '**/*'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment