-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'elastic:main' into fix-gcp-period
- Loading branch information
Showing
9 changed files
with
156 additions
and
615 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
|
||
REPO_DIR=$(pwd) | ||
AWS_SERVICE_ACCOUNT_SECRET_PATH="kv/ci-shared/platform-ingest/aws_account_auth" | ||
|
||
exportAwsSecrets() { | ||
local awsSecretKey | ||
local awsAccessKey | ||
|
||
awsSecretKey=$(retry -t 5 -- vault kv get -field secret_key ${AWS_SERVICE_ACCOUNT_SECRET_PATH}) | ||
awsAccessKey=$(retry -t 5 -- vault kv get -field access_key ${AWS_SERVICE_ACCOUNT_SECRET_PATH}) | ||
|
||
echo "~~~ Exporting AWS secrets" | ||
export AWS_ACCESS_KEY_ID=$awsAccessKey | ||
export AWS_SECRET_ACCESS_KEY=$awsSecretKey | ||
|
||
# AWS_REGION is not set here, since AWS region is taken from beat corresponding *.tf file: | ||
# - x-pack/metricbeat/module/aws/terraform.tf | ||
# - x-pack/filebeat/input/awscloudwatch/_meta/terraform/variables.tf | ||
} | ||
|
||
terraformApply() { | ||
echo "Exporting Terraform Env Vars" | ||
TF_VAR_BRANCH=$(echo "${BUILDKITE_BRANCH}" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9-]/-/g') | ||
TF_VAR_CREATED_DATE=$(date +%s) | ||
export TF_VAR_BUILD_ID="${BUILDKITE_BUILD_ID}" | ||
export TF_VAR_ENVIRONMENT="ci" | ||
export TF_VAR_REPO="beats" | ||
export TF_VAR_BRANCH | ||
export TF_VAR_CREATED_DATE | ||
|
||
echo "Terraform Init on $MODULE_DIR" | ||
terraform -chdir="$MODULE_DIR" init | ||
|
||
echo "Terraform Apply on $MODULE_DIR" | ||
terraform -chdir="$MODULE_DIR" apply -auto-approve | ||
} | ||
|
||
terraformDestroy() { | ||
echo "~~~ Terraform Destroy" | ||
cd $REPO_DIR | ||
find "$MODULE_DIR" -name terraform.tfstate -print0 | while IFS= read -r -d '' tfstate; do | ||
cd "$(dirname "$tfstate")" | ||
buildkite-agent artifact upload "**/terraform.tfstate" | ||
buildkite-agent artifact upload "**/.terraform/**" | ||
buildkite-agent artifact upload "outputs*.yml" | ||
if ! terraform destroy -auto-approve; then | ||
return 1 | ||
fi | ||
cd - | ||
done | ||
return 0 | ||
} | ||
|
||
dockerUp() { | ||
echo "~~~ Run docker-compose services for emulated cloud env" | ||
docker-compose -f .buildkite/deploy/docker/docker-compose.yml up -d | ||
} | ||
|
||
dockerTeardown() { | ||
echo "~~~ Docker Compose Teardown" | ||
docker-compose -f .buildkite/deploy/docker/docker-compose.yml down -v | ||
} | ||
|
||
terraformSetup() { | ||
max_retries=2 | ||
timeout=5 | ||
retries=0 | ||
|
||
while true; do | ||
echo "~~~ Setting up Terraform" | ||
out=$(terraformApply 2>&1) | ||
exit_code=$? | ||
|
||
echo "$out" | ||
|
||
if [ $exit_code -eq 0 ]; then | ||
break | ||
else | ||
retries=$((retries + 1)) | ||
|
||
if [ $retries -gt $max_retries ]; then | ||
teardown | ||
echo "+++ Terraform init & apply failed: $out" | ||
exit 1 | ||
fi | ||
|
||
teardown | ||
|
||
sleep_time=$((timeout * retries)) | ||
echo "~~~~ Retry #$retries failed. Retrying after ${sleep_time}s..." | ||
sleep $sleep_time | ||
fi | ||
done | ||
} | ||
|
||
teardown() { | ||
terraformDestroy | ||
dockerTeardown | ||
} | ||
|
||
trap 'teardown' EXIT | ||
|
||
exportAwsSecrets | ||
dockerUp | ||
terraformSetup |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.