From add6250123d78327738409ee2c1000129251efb0 Mon Sep 17 00:00:00 2001 From: Zack A <24322023+zack-is-cool@users.noreply.github.com> Date: Thu, 26 Oct 2023 14:25:49 -0700 Subject: [PATCH] chore: cleanup release (#7) --- .release-please-manifest.json | 4 +++- README.md | 6 ++++++ examples/complete/aws_login_rolesanywhere.sh | 8 +++----- release-please-config.json | 3 ++- 4 files changed, 14 insertions(+), 7 deletions(-) create mode 100644 README.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 11fea0f..e18ee07 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1,3 @@ -{".":"1.0.0"} +{ + ".": "0.0.0" +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..e23d03a --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# terraform-aws-rolesanywhere + +This repository is used as an example of deploying rolesanywhere in AWS. + +For more info, see: +https://docs.aws.amazon.com/rolesanywhere/latest/userguide/introduction.html diff --git a/examples/complete/aws_login_rolesanywhere.sh b/examples/complete/aws_login_rolesanywhere.sh index 54c6a52..526d44d 100755 --- a/examples/complete/aws_login_rolesanywhere.sh +++ b/examples/complete/aws_login_rolesanywhere.sh @@ -1,9 +1,8 @@ #!/usr/bin/env bash -# # This script should be sourced and not run as a shell script as it is setting environment variables -# # To run `. ./aws_login_rolesanywhere.sh ` -# # This will give you a one hour session in the account of choice -# # It's recommended to create an alias to run this script vs manually entering the inputs each time +# This script should be sourced and not run as a shell script as it is setting environment variables +# This will give you a one hour session in the account of choice +# It's recommended to create an alias to run this script vs manually entering the inputs each time # see https://github.com/aws/rolesanywhere-credential-helper?tab=readme-ov-file#credential-process for more info @@ -110,4 +109,3 @@ echo "$cred" | jq . export AWS_ACCESS_KEY_ID=$(echo $cred | jq -r .AccessKeyId) export AWS_SECRET_ACCESS_KEY=$(echo $cred | jq -r .SecretAccessKey) export AWS_SESSION_TOKEN=$(echo $cred | jq -r .SessionToken) -# export AWS_DEFAULT_REGION="us-gov-west-1" diff --git a/release-please-config.json b/release-please-config.json index c8e0d13..69ad65e 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -30,7 +30,8 @@ "release-type": "simple", "separate-pull-requests": false, "skip-github-release": false, - "versioning": "default" + "versioning": "default", + "release-as": "0.0.1" } } }