You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DevOps-Bash-tools/aws_terraform_create_s3_buc...

63 lines
1.7 KiB
Bash

#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
# args: haritest-terraform-state
#
# Author: Hari Sekhon
# Date: 2022-05-27 18:03:32 +0100 (Fri, 27 May 2022)
#
# https://github.com/HariSekhon/DevOps-Bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck disable=SC1090
. "$srcdir/lib/aws.sh"
# shellcheck disable=SC2034,SC2154
usage_description="
Creates an S3 bucket for storing Terraform state with the following optimizations:
- Enables Versioning
- Enables Encryption
- Enables Versioning
- Enables Server Side Encryption
- Creates Bucket Policy to lock out:
- Power Users role
- any additional given user/group/role ARNs (optional)
Idempotent: skips bucket creation if already exists, applies versioning, encryption, and applies bucket policy if none exists of if \$OVERWRITE_BUCKET_POLICY is set to any value
Region: will create the bucket in your configured region, to override locally set \$AWS_DEFAULT_REGION
$usage_aws_cli_required
"
# used by usage() in lib/utils.sh
# shellcheck disable=SC2034
usage_args="<bucket_name> [<ARNs_to_block_access_from>]"
help_usage "$@"
min_args 1 "$@"
bucket="$1"
shift || :
timestamp "Checking for Power User role"
power_user_arn="$(aws iam list-roles | jq -r '.Roles[].Arn' | grep -i AWSPowerUserAccess || :)"
if [ -n "$power_user_arn" ]; then
timestamp "Power User role ARN found: $power_user_arn"
fi
echo >&2
"$srcdir/aws_s3_bucket.sh" "$bucket" "$@" ${power_user_arn:+"$power_user_arn"}