From 475e3f00bbdc59b14e4152883d5ba92e87d92616 Mon Sep 17 00:00:00 2001 From: Chris Farris Date: Sat, 9 Dec 2023 07:21:37 -0500 Subject: [PATCH 01/12] Update sync-to-test.yaml --- .github/workflows/sync-to-test.yaml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync-to-test.yaml b/.github/workflows/sync-to-test.yaml index c8b81c7..55273b5 100644 --- a/.github/workflows/sync-to-test.yaml +++ b/.github/workflows/sync-to-test.yaml @@ -1,5 +1,8 @@ name: Sync Test Branch to S3 +permissions: + contents: write + on: push: branches: @@ -17,7 +20,23 @@ jobs: --s3-prefix aws-account-automation-lambda-transform --output-template-file cloudformation/BillingMetrics-Template-Transformed.yaml \ --metadata build_ver=$(git rev-parse --short "$GITHUB_SHA") - aws s3 sync --delete cloudformation/ s3://${S3_BUCKET}/aws-account-automation/ + aws s3 sync --delete cloudformation/ s3://${S3_BUCKET}/aws-account-automation/ --content-type text/plain + + for object in `aws s3api list-objects-v2 --bucket ${S3_BUCKET} --prefix aws-account-automation/ --query Contents[].[Key] --output text` ; do + aws s3api list-object-versions --bucket ${S3_BUCKET} --prefix ${object} --query Versions[].[Key,VersionId,LastModified] --output text --max-items 3 + done | grep -v ^None$ > Latest-Test-Versions.txt + + aws s3api list-object-versions --bucket ${S3_BUCKET} --prefix aws-account-automation/ --query Versions[].[Key,VersionId,LastModified] --output text > Test-Versions.txt + + + git config user.name github-actions + git config user.email github-actions@github.com + git add Versions.txt Latest-Versions.txt + git commit -m "AutoGenerated Object Versions" + git push + + + env: S3_BUCKET: pht-cloudformation-dev AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} From 195e26f0b456782fe55061a217396ec87943859c Mon Sep 17 00:00:00 2001 From: Chris Farris Date: Sat, 9 Dec 2023 07:24:34 -0500 Subject: [PATCH 02/12] Update sync-to-test.yaml --- .github/workflows/sync-to-test.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/sync-to-test.yaml b/.github/workflows/sync-to-test.yaml index 55273b5..62f0ce9 100644 --- a/.github/workflows/sync-to-test.yaml +++ b/.github/workflows/sync-to-test.yaml @@ -31,12 +31,10 @@ jobs: git config user.name github-actions git config user.email github-actions@github.com - git add Versions.txt Latest-Versions.txt + git add Test-Versions.txt Test-Latest-Versions.txt git commit -m "AutoGenerated Object Versions" git push - - env: S3_BUCKET: pht-cloudformation-dev AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} From e84f7820de4085ce1a8d49095a950151a32dd270 Mon Sep 17 00:00:00 2001 From: Chris Farris Date: Sat, 9 Dec 2023 09:28:06 -0500 Subject: [PATCH 03/12] Creating MD File for links --- .github/workflows/index_files.py | 29 +++++++++++++++++++++++++++++ .github/workflows/sync-to-test.yaml | 11 +++-------- 2 files changed, 32 insertions(+), 8 deletions(-) create mode 100755 .github/workflows/index_files.py diff --git a/.github/workflows/index_files.py b/.github/workflows/index_files.py new file mode 100755 index 0000000..131e1f0 --- /dev/null +++ b/.github/workflows/index_files.py @@ -0,0 +1,29 @@ +#!/usr/bin/env python3 + +import boto3 +import os +import urllib.parse + +client = boto3.client('s3') + +bucket = os.environ['S3_BUCKET'] + +response = client.list_objects_v2( + Bucket=bucket, + Prefix='aws-account-automation/' + ) + +for o in response['Contents']: + url = f"https://{bucket}.s3.amazonaws.com/{o['Key']}" + print(f"## {o['Key']}") + print(f"* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL={urllib.parse.quote(url)})") + print(f"* [HTTP URL (latest)]({url})") + print(f"* S3 URL (latest) - s3://{bucket}/{o['Key']}") + print("* Previous Version HTTP URLs:") + r2 = client.list_object_versions( + Bucket=bucket, + Prefix=o['Key'] + ) + for v in r2['Versions']: + print(f"\t * [{v['LastModified']} ({v['VersionId']})](https://{bucket}.s3.amazonaws.com/{o['Key']}?versionId={v['VersionId']})") + diff --git a/.github/workflows/sync-to-test.yaml b/.github/workflows/sync-to-test.yaml index 62f0ce9..85f0e24 100644 --- a/.github/workflows/sync-to-test.yaml +++ b/.github/workflows/sync-to-test.yaml @@ -22,17 +22,12 @@ jobs: aws s3 sync --delete cloudformation/ s3://${S3_BUCKET}/aws-account-automation/ --content-type text/plain - for object in `aws s3api list-objects-v2 --bucket ${S3_BUCKET} --prefix aws-account-automation/ --query Contents[].[Key] --output text` ; do - aws s3api list-object-versions --bucket ${S3_BUCKET} --prefix ${object} --query Versions[].[Key,VersionId,LastModified] --output text --max-items 3 - done | grep -v ^None$ > Latest-Test-Versions.txt - - aws s3api list-object-versions --bucket ${S3_BUCKET} --prefix aws-account-automation/ --query Versions[].[Key,VersionId,LastModified] --output text > Test-Versions.txt - + .github/workflows/index_files.py > Test-Links.md git config user.name github-actions git config user.email github-actions@github.com - git add Test-Versions.txt Test-Latest-Versions.txt - git commit -m "AutoGenerated Object Versions" + git add Test-Links.md + git commit -m "AutoGenerated Links File" git push env: From 000fe61c9c551d0595187c96bc4ce885268f83fa Mon Sep 17 00:00:00 2001 From: Chris Farris Date: Sat, 9 Dec 2023 09:29:10 -0500 Subject: [PATCH 04/12] Update sync-to-test.yaml --- .github/workflows/sync-to-test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/sync-to-test.yaml b/.github/workflows/sync-to-test.yaml index 85f0e24..851f026 100644 --- a/.github/workflows/sync-to-test.yaml +++ b/.github/workflows/sync-to-test.yaml @@ -22,6 +22,7 @@ jobs: aws s3 sync --delete cloudformation/ s3://${S3_BUCKET}/aws-account-automation/ --content-type text/plain + pip install boto3 .github/workflows/index_files.py > Test-Links.md git config user.name github-actions From 0835a4adef7a95091952c7e9a3c94613742c321f Mon Sep 17 00:00:00 2001 From: Chris Farris Date: Sat, 9 Dec 2023 09:31:09 -0500 Subject: [PATCH 05/12] Update sync-to-test.yaml --- .github/workflows/sync-to-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-to-test.yaml b/.github/workflows/sync-to-test.yaml index 851f026..544c875 100644 --- a/.github/workflows/sync-to-test.yaml +++ b/.github/workflows/sync-to-test.yaml @@ -29,7 +29,7 @@ jobs: git config user.email github-actions@github.com git add Test-Links.md git commit -m "AutoGenerated Links File" - git push + git push origin HEAD:test env: S3_BUCKET: pht-cloudformation-dev From 80a8201111f707a89350b40f735bccc182132680 Mon Sep 17 00:00:00 2001 From: Chris Farris Date: Sat, 9 Dec 2023 09:37:49 -0500 Subject: [PATCH 06/12] Update sync-to-test.yaml --- .github/workflows/sync-to-test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/sync-to-test.yaml b/.github/workflows/sync-to-test.yaml index 544c875..d25fe4a 100644 --- a/.github/workflows/sync-to-test.yaml +++ b/.github/workflows/sync-to-test.yaml @@ -25,6 +25,7 @@ jobs: pip install boto3 .github/workflows/index_files.py > Test-Links.md + git checkout test git config user.name github-actions git config user.email github-actions@github.com git add Test-Links.md From 79335a37e34d7c911682e6db8bd5c8131593fb1a Mon Sep 17 00:00:00 2001 From: Chris Farris Date: Sat, 9 Dec 2023 09:45:28 -0500 Subject: [PATCH 07/12] Use the right version of checkout --- .github/workflows/sync-to-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-to-test.yaml b/.github/workflows/sync-to-test.yaml index d25fe4a..5e7ab7b 100644 --- a/.github/workflows/sync-to-test.yaml +++ b/.github/workflows/sync-to-test.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Run Sync run: | aws cloudformation package --template-file cloudformation/BillingMetrics-Template.yaml --s3-bucket ${S3_BUCKET} \ From f84abc5eb3b8b12fc488149ecad6365d4cb406e4 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 9 Dec 2023 14:45:46 +0000 Subject: [PATCH 08/12] AutoGenerated Links File --- Test-Links.md | 394 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 394 insertions(+) create mode 100644 Test-Links.md diff --git a/Test-Links.md b/Test-Links.md new file mode 100644 index 0000000..44c8dfd --- /dev/null +++ b/Test-Links.md @@ -0,0 +1,394 @@ +## aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (mAmSKUQFeJFvEimpTnMjLCwGCqfOVd4y)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=mAmSKUQFeJFvEimpTnMjLCwGCqfOVd4y) + * [2023-12-09 14:38:03+00:00 (8i8neCMagKa.bW2eJX3jfgvAPisxl18E)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=8i8neCMagKa.bW2eJX3jfgvAPisxl18E) + * [2023-12-09 14:31:27+00:00 (C_j0kISja5eGpOPXuo27FBwjM3X052ho)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=C_j0kISja5eGpOPXuo27FBwjM3X052ho) + * [2023-12-09 14:29:24+00:00 (fDpoEdAcsz7V2Hn0Bw65LVMUJIGEEG0M)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=fDpoEdAcsz7V2Hn0Bw65LVMUJIGEEG0M) + * [2023-12-09 14:28:25+00:00 (rwVQitknnK.TOTKtCXKtbHcunUomIHKS)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=rwVQitknnK.TOTKtCXKtbHcunUomIHKS) + * [2023-12-09 12:24:54+00:00 (43UlXKFs.QzNuK.m8.N7kxhG4rz2h.Lf)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=43UlXKFs.QzNuK.m8.N7kxhG4rz2h.Lf) + * [2023-12-09 12:21:58+00:00 (0QExLMI0NO6aEbSLI3TbfYrZZiAR7D4S)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=0QExLMI0NO6aEbSLI3TbfYrZZiAR7D4S) + * [2020-12-20 12:47:21+00:00 (Ip3Mn2jOS1Zra.MUCNfD8NYdsig46tFk)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=Ip3Mn2jOS1Zra.MUCNfD8NYdsig46tFk) + * [2020-12-20 12:46:34+00:00 (85M8cU4NisUK3QrQhv8TY0ubS_4Np8Zf)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=85M8cU4NisUK3QrQhv8TY0ubS_4Np8Zf) + * [2020-12-20 12:24:31+00:00 (Gz02M7I2ao6hPpWs9Ch_mNEBHtzv7mRm)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=Gz02M7I2ao6hPpWs9Ch_mNEBHtzv7mRm) + * [2020-12-20 12:22:37+00:00 (EVtSOL.ZTnkjBOeoSkBCgFoofdEbmFzX)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=EVtSOL.ZTnkjBOeoSkBCgFoofdEbmFzX) + * [2020-12-20 11:55:28+00:00 (ezULsha7CysqxzIZBw4ZJwzW0dKNH.GG)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=ezULsha7CysqxzIZBw4ZJwzW0dKNH.GG) +## aws-account-automation/AWSConfigBucket-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AWSConfigBucket-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (fe6VxXuZLidMTxNYslnqsFIHPOHNEz6J)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=fe6VxXuZLidMTxNYslnqsFIHPOHNEz6J) + * [2023-12-09 14:38:03+00:00 (3UipFwY09OtM2kT5rMgI98K7vZonPiXm)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=3UipFwY09OtM2kT5rMgI98K7vZonPiXm) + * [2023-12-09 14:31:27+00:00 (ktPvtjk9pxNL5FjDD.O5leyPeuJbFyZD)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=ktPvtjk9pxNL5FjDD.O5leyPeuJbFyZD) + * [2023-12-09 14:29:24+00:00 (oFl4dNbQJhwckZbl95FRruYKVircYJMl)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=oFl4dNbQJhwckZbl95FRruYKVircYJMl) + * [2023-12-09 14:28:25+00:00 (2.FB_Uj.2vbuptURFNrrU_EjIIF3WwmH)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=2.FB_Uj.2vbuptURFNrrU_EjIIF3WwmH) + * [2023-12-09 12:24:55+00:00 (mJp8NHBMc.icRTViFfrLLxx7mrl.clLu)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=mJp8NHBMc.icRTViFfrLLxx7mrl.clLu) + * [2023-12-09 12:21:58+00:00 (Z8ntL4n3XoSFNnn6e05KUpE27Z1M7UiH)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=Z8ntL4n3XoSFNnn6e05KUpE27Z1M7UiH) +## aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (CXMHH2EIYnWCrdJ0jIUPvI62GuY0OpkR)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=CXMHH2EIYnWCrdJ0jIUPvI62GuY0OpkR) + * [2023-12-09 14:38:03+00:00 (qqJbpj5Bam20oB_zifC8bttLVBbKuZhF)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=qqJbpj5Bam20oB_zifC8bttLVBbKuZhF) + * [2023-12-09 14:31:27+00:00 (JsB57s2u6rjoFUOYlxQ8ezxPyiidp9hD)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=JsB57s2u6rjoFUOYlxQ8ezxPyiidp9hD) + * [2023-12-09 14:29:24+00:00 (93dUNuyhxhrcF7hWO0Mq_4AEIRCOSjn.)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=93dUNuyhxhrcF7hWO0Mq_4AEIRCOSjn.) + * [2023-12-09 14:28:25+00:00 (N4dk5iZyFZFzZ.i6UYsnES2pLffP8_3O)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=N4dk5iZyFZFzZ.i6UYsnES2pLffP8_3O) + * [2023-12-09 12:24:55+00:00 (42GGY3SINMG8T.DhhOTuvof1mOb7uC2D)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=42GGY3SINMG8T.DhhOTuvof1mOb7uC2D) + * [2023-12-09 12:21:58+00:00 (JNJeCqs2erMsbeVxGP0TlT9IWHAwE1Ip)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=JNJeCqs2erMsbeVxGP0TlT9IWHAwE1Ip) +## aws-account-automation/AWSConfigRecorder-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AWSConfigRecorder-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (LYgaSrid3e.UlXgMPOTfBK5w7v6ZGSmP)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=LYgaSrid3e.UlXgMPOTfBK5w7v6ZGSmP) + * [2023-12-09 14:38:03+00:00 (Xwul7uWplCa3XOHlT2UV2Kav_PsIbwLM)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=Xwul7uWplCa3XOHlT2UV2Kav_PsIbwLM) + * [2023-12-09 14:31:27+00:00 (Ib15Q26RML1gdqXqAsAe0Rf8gl9JM557)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=Ib15Q26RML1gdqXqAsAe0Rf8gl9JM557) + * [2023-12-09 14:29:24+00:00 (0GeTRC12LTqPz1NuL.Qlu_lGJqKtcxfs)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=0GeTRC12LTqPz1NuL.Qlu_lGJqKtcxfs) + * [2023-12-09 14:28:25+00:00 (cc_oSKWyWQEoIKv.uGwBe7z8N09UuvRC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=cc_oSKWyWQEoIKv.uGwBe7z8N09UuvRC) + * [2023-12-09 12:24:55+00:00 (4z0xaRcHffbid4HOw_iPgbRkaiRjxxHF)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=4z0xaRcHffbid4HOw_iPgbRkaiRjxxHF) + * [2023-12-09 12:21:58+00:00 (XD3xJfdlXCfnL5l_TmVxzn1EtNbj3LCk)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=XD3xJfdlXCfnL5l_TmVxzn1EtNbj3LCk) +## aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (ozT01mK51bEqPZPBOImTWvnNlOClSpRI)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=ozT01mK51bEqPZPBOImTWvnNlOClSpRI) + * [2023-12-09 14:38:03+00:00 (Q1_xj1HkaiLlusq7anXdrJEl1_aYTwPW)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=Q1_xj1HkaiLlusq7anXdrJEl1_aYTwPW) + * [2023-12-09 14:31:27+00:00 (yf8rMp1XnrisBeT18DMuCpgBH6jIMZRD)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=yf8rMp1XnrisBeT18DMuCpgBH6jIMZRD) + * [2023-12-09 14:29:24+00:00 (b8b62TF9NhYIZe4pS_7niEI2XJ.zOKMk)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=b8b62TF9NhYIZe4pS_7niEI2XJ.zOKMk) + * [2023-12-09 14:28:25+00:00 (nkhNPFc_Xz9.cEp7l_Ur_tE_ilnI_cM4)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=nkhNPFc_Xz9.cEp7l_Ur_tE_ilnI_cM4) + * [2023-12-09 12:24:55+00:00 (exDJz8q6WuXxGpRjw7RW6rYP0FK3pIUt)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=exDJz8q6WuXxGpRjw7RW6rYP0FK3pIUt) + * [2023-12-09 12:21:58+00:00 (nBCqpTjkmh4hVRtsrG.o14jZdjyxQTyJ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=nBCqpTjkmh4hVRtsrG.o14jZdjyxQTyJ) +## aws-account-automation/AccessAnalyzerAlert-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AccessAnalyzerAlert-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (RiRhvQO0nj.P2ul1Ft3GHc4JD_DPwapW)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=RiRhvQO0nj.P2ul1Ft3GHc4JD_DPwapW) + * [2023-12-09 14:38:03+00:00 (OKvdPrNHLZP9UrKwx26axy17YK8QPTnZ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=OKvdPrNHLZP9UrKwx26axy17YK8QPTnZ) + * [2023-12-09 14:31:27+00:00 (whptq2JuCS0p9_hkL8AjLvnU9qWF31Cg)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=whptq2JuCS0p9_hkL8AjLvnU9qWF31Cg) + * [2023-12-09 14:29:24+00:00 (khfDyo53DvwWbdxJm7yCB5W_lNQ2ZQOv)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=khfDyo53DvwWbdxJm7yCB5W_lNQ2ZQOv) + * [2023-12-09 14:28:25+00:00 (0pcYeGw0xJHl7Hla_phv1tzv4ibP60ks)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=0pcYeGw0xJHl7Hla_phv1tzv4ibP60ks) + * [2023-12-09 12:24:55+00:00 (bDlk4pmLeM6c9shw5571j0NIdoFyZ5YG)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=bDlk4pmLeM6c9shw5571j0NIdoFyZ5YG) + * [2023-12-09 12:21:58+00:00 (kwm7uO0dgCoP1WbbJoeQoEhfoHscIf.r)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=kwm7uO0dgCoP1WbbJoeQoEhfoHscIf.r) +## aws-account-automation/AccountAlertTopics-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AccountAlertTopics-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (8EwVfOnlICBOumMll.0Vh13BhcPp11CH)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=8EwVfOnlICBOumMll.0Vh13BhcPp11CH) + * [2023-12-09 14:38:03+00:00 (x3pLJtyM9i1TkMMpZ_flCZgr6ZmO.ypl)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=x3pLJtyM9i1TkMMpZ_flCZgr6ZmO.ypl) + * [2023-12-09 14:31:27+00:00 (1nSbfEkIW19qPpjVbLyH.QgVgBkzojIm)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=1nSbfEkIW19qPpjVbLyH.QgVgBkzojIm) + * [2023-12-09 14:29:24+00:00 (QxOzL5FO0TfbHFUdD4iDkdQOU9fOnQU7)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=QxOzL5FO0TfbHFUdD4iDkdQOU9fOnQU7) + * [2023-12-09 14:28:25+00:00 (8gaKFQ8b52R7dK0vX9qBFMFC1wa9ULPn)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=8gaKFQ8b52R7dK0vX9qBFMFC1wa9ULPn) + * [2023-12-09 12:24:55+00:00 (4wgWTEYwVkCP1TYLohUK7ZdBqsqu7EIF)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=4wgWTEYwVkCP1TYLohUK7ZdBqsqu7EIF) + * [2023-12-09 12:21:58+00:00 (VH3r_7BfwaZOsXn0mBma7lsSYb4ZwGN2)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=VH3r_7BfwaZOsXn0mBma7lsSYb4ZwGN2) + * [2020-12-20 12:47:21+00:00 (vIUheirF0D_HdbA81.ZUgpH.K4JmZ5cb)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=vIUheirF0D_HdbA81.ZUgpH.K4JmZ5cb) + * [2020-12-20 12:46:34+00:00 (VhL9dUUVU7yof61TgO1kh7SC57OR5gBl)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=VhL9dUUVU7yof61TgO1kh7SC57OR5gBl) + * [2020-12-20 12:24:31+00:00 (yJhglwbgokajGEVgiBU6E8IwrVYSdJ0w)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=yJhglwbgokajGEVgiBU6E8IwrVYSdJ0w) + * [2020-12-20 12:22:37+00:00 (I7R6RkIPQz54JJIAhdW8Q0CMbjNLZn1E)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=I7R6RkIPQz54JJIAhdW8Q0CMbjNLZn1E) + * [2020-12-20 11:55:28+00:00 (k8nT2TeghqKGm3EJl7U4xR9wEd8cH1l.)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=k8nT2TeghqKGm3EJl7U4xR9wEd8cH1l.) +## aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (h4Y2N5Gk64AdbHFZpMS3Gv_AoeYA61E2)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=h4Y2N5Gk64AdbHFZpMS3Gv_AoeYA61E2) + * [2023-12-09 14:38:03+00:00 (ZjEjV98h7MWWCZc9ot_n06X8SH9SvHdp)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=ZjEjV98h7MWWCZc9ot_n06X8SH9SvHdp) + * [2023-12-09 14:31:27+00:00 (m9O3ue_PNImaZPCiw4c.VedsBQv8XXEo)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=m9O3ue_PNImaZPCiw4c.VedsBQv8XXEo) + * [2023-12-09 14:29:24+00:00 (9JtIIWHAgb5Eml5pNcpSCAZfEy5Pwu8c)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=9JtIIWHAgb5Eml5pNcpSCAZfEy5Pwu8c) + * [2023-12-09 14:28:25+00:00 (NsMw9EeGwrrgI200NF12uykjGJLcLSDd)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=NsMw9EeGwrrgI200NF12uykjGJLcLSDd) + * [2023-12-09 12:24:55+00:00 (YwftXoVFRNFkRs8uUN3cXjtkFF5MzTAO)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=YwftXoVFRNFkRs8uUN3cXjtkFF5MzTAO) + * [2023-12-09 12:21:58+00:00 (YTEmBFYGla.TbRMWV6.fmjGYAYIj1Rxc)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=YTEmBFYGla.TbRMWV6.fmjGYAYIj1Rxc) +## aws-account-automation/AuditRole-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AuditRole-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (64Sx1nBb7KjrrHafbYbWrqH8GocGe3vC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=64Sx1nBb7KjrrHafbYbWrqH8GocGe3vC) + * [2023-12-09 14:38:03+00:00 (IvjSYlCXB68bV47X9syOAZxB5TaA2DoC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=IvjSYlCXB68bV47X9syOAZxB5TaA2DoC) + * [2023-12-09 14:31:27+00:00 (BXAih4qeknTvH3EJUlU2YgVLZJuIKJX5)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=BXAih4qeknTvH3EJUlU2YgVLZJuIKJX5) + * [2023-12-09 14:29:24+00:00 (OobH2MSYWIKevboRMmD.U1ZiG4wVVx0M)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=OobH2MSYWIKevboRMmD.U1ZiG4wVVx0M) + * [2023-12-09 14:28:25+00:00 (EAMbyMmmjF2SM9E6UOyno3LensgWsC0A)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=EAMbyMmmjF2SM9E6UOyno3LensgWsC0A) + * [2023-12-09 12:24:55+00:00 (xGZ9uuW_jlXXw1wstYjKZj_bOXls3Wzg)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=xGZ9uuW_jlXXw1wstYjKZj_bOXls3Wzg) + * [2023-12-09 12:21:58+00:00 (gPd.oDExDp_xPamS76kmxGCmIhgQG2k1)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=gPd.oDExDp_xPamS76kmxGCmIhgQG2k1) + * [2020-12-20 12:47:21+00:00 (DWlSDAslNhfaHkCCNhwWL2W2kJGfiJW7)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=DWlSDAslNhfaHkCCNhwWL2W2kJGfiJW7) + * [2020-12-20 12:46:34+00:00 (GMW7ceJGt6Vt3.I56ToXiMkDQFF3PFnG)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=GMW7ceJGt6Vt3.I56ToXiMkDQFF3PFnG) + * [2020-12-20 12:24:31+00:00 (pOPiwqE0pYooKDFer.kIxyjCjxC1h4VD)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=pOPiwqE0pYooKDFer.kIxyjCjxC1h4VD) + * [2020-12-20 12:22:37+00:00 (R.6nP9IOV89Mt0iKPySrdOrMdFJfp4Vk)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=R.6nP9IOV89Mt0iKPySrdOrMdFJfp4Vk) + * [2020-12-20 11:55:28+00:00 (b2u8Pfcs7nIoev5UNamIQbtxirZZYGbt)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=b2u8Pfcs7nIoev5UNamIQbtxirZZYGbt) +## aws-account-automation/BillingBucket-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/BillingBucket-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (X21jhX80D_7F4G7IEk15sMBLEs7Wds8c)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=X21jhX80D_7F4G7IEk15sMBLEs7Wds8c) + * [2023-12-09 14:38:03+00:00 (6M3xkOMmurRThPoe.TLxFAZig3C6tGvV)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=6M3xkOMmurRThPoe.TLxFAZig3C6tGvV) + * [2023-12-09 14:31:27+00:00 (wavWM5zO7T12YfhYbekL6_N4wZjGwS5_)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=wavWM5zO7T12YfhYbekL6_N4wZjGwS5_) + * [2023-12-09 14:29:24+00:00 (YKwBgDk8ix7nMrbN92CfWIpZJmmHe1Qh)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=YKwBgDk8ix7nMrbN92CfWIpZJmmHe1Qh) + * [2023-12-09 14:28:25+00:00 (y_8jQQhCBg4Lre_uEObNpephpmcCBB1D)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=y_8jQQhCBg4Lre_uEObNpephpmcCBB1D) + * [2023-12-09 12:24:55+00:00 (ffYvcGXOhT.Vb6DBx0vhSHczlBi52o1d)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=ffYvcGXOhT.Vb6DBx0vhSHczlBi52o1d) + * [2023-12-09 12:21:58+00:00 (Yw2eXbS5fCByXKsGfj3b.jC7URRUUjxg)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=Yw2eXbS5fCByXKsGfj3b.jC7URRUUjxg) + * [2020-12-20 12:47:21+00:00 (bHgrOqGRdxIkdBO83uUjwftZ4hYDWy.7)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=bHgrOqGRdxIkdBO83uUjwftZ4hYDWy.7) + * [2020-12-20 12:46:34+00:00 (qJqUNqxike3WBRIVz3ENSbe0iz0_3sen)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=qJqUNqxike3WBRIVz3ENSbe0iz0_3sen) + * [2020-12-20 12:24:31+00:00 (vsPhAxkl3ZGnljZwbiP352TElwm1fjgl)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=vsPhAxkl3ZGnljZwbiP352TElwm1fjgl) + * [2020-12-20 12:22:37+00:00 (e0hTu_PGsMUscQ_vY_m.F3BLGgWQQI5j)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=e0hTu_PGsMUscQ_vY_m.F3BLGgWQQI5j) + * [2020-12-20 11:55:28+00:00 (uMJC9KZbAeqMe63OST39sHQH2_.marTb)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=uMJC9KZbAeqMe63OST39sHQH2_.marTb) +## aws-account-automation/BillingMetrics-Template-Transformed.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/BillingMetrics-Template-Transformed.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (OUjBvYnQpPGznRcZ5DM5nbVPKlldaNTU)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=OUjBvYnQpPGznRcZ5DM5nbVPKlldaNTU) + * [2023-12-09 14:38:03+00:00 (XkzJZ5tEI.WtxA5W9tQp1Y.SiXjUIGQ9)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=XkzJZ5tEI.WtxA5W9tQp1Y.SiXjUIGQ9) + * [2023-12-09 14:31:27+00:00 (2zelhK.OXO84xl6yY7vg_qddSG5DD.A8)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=2zelhK.OXO84xl6yY7vg_qddSG5DD.A8) + * [2023-12-09 14:29:24+00:00 (hvZFmieFHDMaFvu5WSvKsmTSQlzuGpft)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=hvZFmieFHDMaFvu5WSvKsmTSQlzuGpft) + * [2023-12-09 14:28:25+00:00 (j7.4tFMespjPXBqYiDc_w.qTt38BD5XF)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=j7.4tFMespjPXBqYiDc_w.qTt38BD5XF) + * [2023-12-09 12:24:55+00:00 (KA9RHBFid2gOmhFxbRFdQrmcW7dZQCiV)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=KA9RHBFid2gOmhFxbRFdQrmcW7dZQCiV) + * [2023-12-09 12:21:58+00:00 (DrDB8JVeoqHFQdEIpLm8wJvgxRdjEtiR)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=DrDB8JVeoqHFQdEIpLm8wJvgxRdjEtiR) + * [2020-12-20 12:47:21+00:00 (YJl0mNtwWojbpn4EBi4.Tqys_ZdPpSDk)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=YJl0mNtwWojbpn4EBi4.Tqys_ZdPpSDk) + * [2020-12-20 12:46:34+00:00 (dMLGPlo0eM88qiJQUbiRyKmDmEVMu2Fa)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=dMLGPlo0eM88qiJQUbiRyKmDmEVMu2Fa) + * [2020-12-20 12:24:31+00:00 (aH6tEooGlhySJenAg_S07L2TbOMLyhRz)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=aH6tEooGlhySJenAg_S07L2TbOMLyhRz) + * [2020-12-20 12:22:37+00:00 (D9cnJQL0Xu0LWikQ0n6adt5kWrhAG35v)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=D9cnJQL0Xu0LWikQ0n6adt5kWrhAG35v) +## aws-account-automation/BillingMetrics-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/BillingMetrics-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (npw7Q118wDusbCBAs4RkJs3Pb_dzO9Ft)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=npw7Q118wDusbCBAs4RkJs3Pb_dzO9Ft) + * [2023-12-09 14:38:03+00:00 (izphBrktDbG5NwHRA6XJMEJsZt5pQg48)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=izphBrktDbG5NwHRA6XJMEJsZt5pQg48) + * [2023-12-09 14:31:27+00:00 (HDDWZtovafcaohK0dW7RYHKEuyeVRN9y)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=HDDWZtovafcaohK0dW7RYHKEuyeVRN9y) + * [2023-12-09 14:29:24+00:00 (lBeQIxGgEU3UDi7udPlrigiLFU6I0f.3)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=lBeQIxGgEU3UDi7udPlrigiLFU6I0f.3) + * [2023-12-09 14:28:25+00:00 (FjUu6IWy_9CDkVQsKH9HQlM7gCnPfq7u)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=FjUu6IWy_9CDkVQsKH9HQlM7gCnPfq7u) + * [2023-12-09 12:24:55+00:00 (C9iPRYUr9Ta6eZCwgH_keAN8z_78_gp9)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=C9iPRYUr9Ta6eZCwgH_keAN8z_78_gp9) + * [2023-12-09 12:21:58+00:00 (.7SD9oGHtnfripHFny8NjTcYpLRo1M6s)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=.7SD9oGHtnfripHFny8NjTcYpLRo1M6s) + * [2020-12-20 12:47:21+00:00 (xgERwXL_9_04TWGTI5SML6J3EfiO.Smz)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=xgERwXL_9_04TWGTI5SML6J3EfiO.Smz) + * [2020-12-20 12:46:34+00:00 (mttTiVXJ4gAvOpd4K6FLSxykiK7vp3iU)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=mttTiVXJ4gAvOpd4K6FLSxykiK7vp3iU) + * [2020-12-20 12:24:30+00:00 (zKfSjzwagGBuLoUct7y3QSYY253gKZ7t)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=zKfSjzwagGBuLoUct7y3QSYY253gKZ7t) + * [2020-12-20 12:22:37+00:00 (TfSeyEH84yVzkcpJuQxh7Y_g4zaWpWH0)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=TfSeyEH84yVzkcpJuQxh7Y_g4zaWpWH0) +## aws-account-automation/CloudTrail-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/CloudTrail-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (Rzrwdxs3F346DpF0WGtYs08mi.q3Fj7d)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=Rzrwdxs3F346DpF0WGtYs08mi.q3Fj7d) + * [2023-12-09 14:38:03+00:00 (jyYIpj3LQvuMjkx04HfLaIyGo_GM8IOC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=jyYIpj3LQvuMjkx04HfLaIyGo_GM8IOC) + * [2023-12-09 14:31:27+00:00 (a8E2DThie2jAlUdmsU6FczS6BBXz51Wb)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=a8E2DThie2jAlUdmsU6FczS6BBXz51Wb) + * [2023-12-09 14:29:25+00:00 (cD.bOV.pZlv65H18dHwJ0nPEoGlOgwXr)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=cD.bOV.pZlv65H18dHwJ0nPEoGlOgwXr) + * [2023-12-09 14:28:26+00:00 (0VXtXBHKgYtjypDGZ18ViuSIVJVR3pgL)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=0VXtXBHKgYtjypDGZ18ViuSIVJVR3pgL) + * [2023-12-09 12:24:55+00:00 (570zvSMRg6wPi0MlSxVmXhuzMAfsKfZY)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=570zvSMRg6wPi0MlSxVmXhuzMAfsKfZY) + * [2023-12-09 12:21:58+00:00 (UE5UjBWwhXvGRTDbZ6yPa0iwVcg7Wbrk)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=UE5UjBWwhXvGRTDbZ6yPa0iwVcg7Wbrk) + * [2020-12-20 12:47:21+00:00 (Iynaiy95VMxq1QzbVVoC33NE.iPQzCrf)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=Iynaiy95VMxq1QzbVVoC33NE.iPQzCrf) + * [2020-12-20 12:46:34+00:00 (T2Lu1XG9WqbkaLcDAkYPxXz55uCh8qd3)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=T2Lu1XG9WqbkaLcDAkYPxXz55uCh8qd3) + * [2020-12-20 12:24:31+00:00 (97G1QTxuE8Soc1IjLhO6rRbza7iCDvh_)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=97G1QTxuE8Soc1IjLhO6rRbza7iCDvh_) + * [2020-12-20 12:22:37+00:00 (7E0r0gFqMChLT3XLSc1cXH6QPUPxAoOY)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=7E0r0gFqMChLT3XLSc1cXH6QPUPxAoOY) + * [2020-12-20 11:55:28+00:00 (NXY4C6T.wC1jRkEurZehtg6EHeAHNQRm)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=NXY4C6T.wC1jRkEurZehtg6EHeAHNQRm) +## aws-account-automation/CloudTrailConfigBucket-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/CloudTrailConfigBucket-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (RTD6h6j19_d909arKELotgP6B9lOJmmN)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=RTD6h6j19_d909arKELotgP6B9lOJmmN) + * [2023-12-09 14:38:03+00:00 (lOr6I0v8RxNdXCxCuhqpnG7Iaesn1JLe)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=lOr6I0v8RxNdXCxCuhqpnG7Iaesn1JLe) + * [2023-12-09 14:31:27+00:00 (zgp12zcpMfcovWfZ7GHrMtSNkXwgCLH7)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=zgp12zcpMfcovWfZ7GHrMtSNkXwgCLH7) + * [2023-12-09 14:29:25+00:00 (DkighnjItFgXlpTxP.XPR9aKVDM732C2)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=DkighnjItFgXlpTxP.XPR9aKVDM732C2) + * [2023-12-09 14:28:26+00:00 (vOShoucgPIEjf28C5PT5M.j9djBAYi1s)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=vOShoucgPIEjf28C5PT5M.j9djBAYi1s) + * [2023-12-09 12:24:55+00:00 (4Ldxqi4Fm4gzGjfzDwiO4UjM4NX4yNz0)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=4Ldxqi4Fm4gzGjfzDwiO4UjM4NX4yNz0) + * [2023-12-09 12:21:58+00:00 (oBT.rgjk70JNtE53Hk3oJhUVrbT1XMWU)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=oBT.rgjk70JNtE53Hk3oJhUVrbT1XMWU) +## aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (RrHNFBn.eL8P7q7ELZvNNJBOQ3XVY5wV)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=RrHNFBn.eL8P7q7ELZvNNJBOQ3XVY5wV) + * [2023-12-09 14:38:03+00:00 (iiD54cwrxazhgzoaQOeVHjFRSz6wMwkv)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=iiD54cwrxazhgzoaQOeVHjFRSz6wMwkv) + * [2023-12-09 14:31:27+00:00 (KMSY5tLD8VfMZGMknLy1JtGTDdA8EIuM)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=KMSY5tLD8VfMZGMknLy1JtGTDdA8EIuM) + * [2023-12-09 14:29:25+00:00 (.sYLhzD6bm.tab4iHQxsrUQ5bFP7CJP8)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=.sYLhzD6bm.tab4iHQxsrUQ5bFP7CJP8) + * [2023-12-09 14:28:26+00:00 (_bFZBEQ4zUwagDHmq9TS_QnlWvYh9YVS)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=_bFZBEQ4zUwagDHmq9TS_QnlWvYh9YVS) + * [2023-12-09 12:24:55+00:00 (w5eQY6dq3JbPBClh1YGuwPDoY2n0J42.)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=w5eQY6dq3JbPBClh1YGuwPDoY2n0J42.) + * [2023-12-09 12:21:58+00:00 (WuMGIwY_NebsnSK2HEiLhQahzmqqiwPq)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=WuMGIwY_NebsnSK2HEiLhQahzmqqiwPq) + * [2020-12-20 12:47:21+00:00 (OR.EZYkp6Xi6UKlDPqBFHic1AkBeUupi)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=OR.EZYkp6Xi6UKlDPqBFHic1AkBeUupi) + * [2020-12-20 12:46:34+00:00 (cfkXAv5TWmpgO4e1odlroSmQMtzmQCSw)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=cfkXAv5TWmpgO4e1odlroSmQMtzmQCSw) + * [2020-12-20 12:24:31+00:00 (KlwWGQF61nL9rxJCwOwBk453fVoJQZoi)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=KlwWGQF61nL9rxJCwOwBk453fVoJQZoi) + * [2020-12-20 12:22:37+00:00 (jAPEH.Vmzsl82WlFgGTQVzCG_CAxyNay)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=jAPEH.Vmzsl82WlFgGTQVzCG_CAxyNay) + * [2020-12-20 11:55:28+00:00 (h5MDrQhLyd46GFkrYiwwgWDjWvoacE67)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=h5MDrQhLyd46GFkrYiwwgWDjWvoacE67) +## aws-account-automation/CostExplorerAlerts-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/CostExplorerAlerts-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (.yC6O1Q7a0.QTg8.4LrE_MZL1T9is1zo)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=.yC6O1Q7a0.QTg8.4LrE_MZL1T9is1zo) + * [2023-12-09 14:38:03+00:00 (htjrUGqGNMzMDDrYZqzEPxhKlv4PNsTk)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=htjrUGqGNMzMDDrYZqzEPxhKlv4PNsTk) + * [2023-12-09 14:31:27+00:00 (dlFpfs.PMiD0pzqoyax2xhpTt5vdf_K_)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=dlFpfs.PMiD0pzqoyax2xhpTt5vdf_K_) + * [2023-12-09 14:29:25+00:00 (Z9._pVffFB6Fww0b1.vynI4cjtKy3x7A)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=Z9._pVffFB6Fww0b1.vynI4cjtKy3x7A) + * [2023-12-09 14:28:26+00:00 (6qQrVCz0jjfet8eIDjoVa_AQFl2UT7Tw)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=6qQrVCz0jjfet8eIDjoVa_AQFl2UT7Tw) + * [2023-12-09 12:24:55+00:00 (ZEfbxwzHCNdCJIQWuw7_wJ8OregBJa06)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=ZEfbxwzHCNdCJIQWuw7_wJ8OregBJa06) + * [2023-12-09 12:21:58+00:00 (eZy4VNCe_u58zheonKgY7L3IuLoCcKUh)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=eZy4VNCe_u58zheonKgY7L3IuLoCcKUh) +## aws-account-automation/EBSAutomatedTagging.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/EBSAutomatedTagging.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (5MBPqOa.wcW0kREMJp6zNkYDq88q.D5b)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=5MBPqOa.wcW0kREMJp6zNkYDq88q.D5b) + * [2023-12-09 14:38:03+00:00 (uU1_dzimYI8sfWVm14yVlcGT.nnCZLLZ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=uU1_dzimYI8sfWVm14yVlcGT.nnCZLLZ) + * [2023-12-09 14:31:27+00:00 (kakMq6xzBePVXkdvbteu5W.q_VbiuQmK)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=kakMq6xzBePVXkdvbteu5W.q_VbiuQmK) + * [2023-12-09 14:29:25+00:00 (hdVYHMsOjQnMX.ad9fSzgu1k5sRKVJhv)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=hdVYHMsOjQnMX.ad9fSzgu1k5sRKVJhv) + * [2023-12-09 14:28:26+00:00 (.Xyl3.E17G9SqMldlSVNtSRfYpDFSCFu)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=.Xyl3.E17G9SqMldlSVNtSRfYpDFSCFu) + * [2023-12-09 12:24:55+00:00 (Fv9YCgOW2cjqVM4ZybuMSrfvbYaDjJX5)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=Fv9YCgOW2cjqVM4ZybuMSrfvbYaDjJX5) + * [2023-12-09 12:21:58+00:00 (E9_SQFMGivwJmZEnjux1YBbvinyWiYfE)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=E9_SQFMGivwJmZEnjux1YBbvinyWiYfE) + * [2020-12-20 12:47:21+00:00 (G2kVQgnmKm7mRBhUV4CpbhWH_d6cJXKs)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=G2kVQgnmKm7mRBhUV4CpbhWH_d6cJXKs) + * [2020-12-20 12:46:34+00:00 (7CPAV9n5mZJSEtIL_uWo6RJ87mEnBf5o)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=7CPAV9n5mZJSEtIL_uWo6RJ87mEnBf5o) + * [2020-12-20 12:24:31+00:00 (DgZRz9KPiJEQw0bUcVf3lZBsAUcgYBom)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=DgZRz9KPiJEQw0bUcVf3lZBsAUcgYBom) + * [2020-12-20 12:22:37+00:00 (1QmxvFaSBPTi3t5HAGlNxJjnR1lX3twp)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=1QmxvFaSBPTi3t5HAGlNxJjnR1lX3twp) + * [2020-12-20 11:55:28+00:00 (51lpMNj8tkrB.lGpIgeT8v_.plE4ipBs)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=51lpMNj8tkrB.lGpIgeT8v_.plE4ipBs) +## aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (5nl_mSaEVIhPqCJgxaaLJn0edTUMXSdP)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=5nl_mSaEVIhPqCJgxaaLJn0edTUMXSdP) + * [2023-12-09 14:38:03+00:00 (ApNAnAy5iclwOO1zl9ADXMSfkLcW7ffQ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=ApNAnAy5iclwOO1zl9ADXMSfkLcW7ffQ) + * [2023-12-09 14:31:27+00:00 (CIMqscTcIBsyA4S9RopEK2A8WK1.XAuA)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=CIMqscTcIBsyA4S9RopEK2A8WK1.XAuA) + * [2023-12-09 14:29:25+00:00 (WuAF6l4ZUxtDP1Quo3mlIK.NChuQo5F6)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=WuAF6l4ZUxtDP1Quo3mlIK.NChuQo5F6) + * [2023-12-09 14:28:26+00:00 (tYu_FyIkppcYf6JG5d9zojo35IqPaklK)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=tYu_FyIkppcYf6JG5d9zojo35IqPaklK) + * [2023-12-09 12:24:55+00:00 (aj0lhGPCknfJtwxBRewNnSRi0SzlPLTX)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=aj0lhGPCknfJtwxBRewNnSRi0SzlPLTX) + * [2023-12-09 12:21:58+00:00 (vZNrSF7w885RjD.5fU.6DHlEspRkh7jh)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=vZNrSF7w885RjD.5fU.6DHlEspRkh7jh) +## aws-account-automation/GuardDuty-to-Slack-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/GuardDuty-to-Slack-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (vEft41x.ju2pZQxyD2Xsg3yT5OZDejyW)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=vEft41x.ju2pZQxyD2Xsg3yT5OZDejyW) + * [2023-12-09 14:38:03+00:00 (rVpckbw7QsqLPZTf4a.753hqtIMNie8A)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=rVpckbw7QsqLPZTf4a.753hqtIMNie8A) + * [2023-12-09 14:31:27+00:00 (WDXrtxXFebg1DsEnForkoO5FFElcl0aL)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=WDXrtxXFebg1DsEnForkoO5FFElcl0aL) + * [2023-12-09 14:29:25+00:00 (L.Xdkjyt9LqSp5an8ohffuoU1jCjQXox)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=L.Xdkjyt9LqSp5an8ohffuoU1jCjQXox) + * [2023-12-09 14:28:26+00:00 (ZggX_75Ucaq2ugMQyaY7kljnWUWbNcJN)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=ZggX_75Ucaq2ugMQyaY7kljnWUWbNcJN) + * [2023-12-09 12:24:55+00:00 (MWS091urAtGyizML80mcqByrxmMfi4AK)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=MWS091urAtGyizML80mcqByrxmMfi4AK) + * [2023-12-09 12:21:58+00:00 (vDb.VGP2t710uxdGtpPqK0g7JWMkOXzb)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=vDb.VGP2t710uxdGtpPqK0g7JWMkOXzb) + * [2020-12-20 12:47:21+00:00 (vln.Qrd7FKUnTqqs24t2ntv.BYQetbBV)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=vln.Qrd7FKUnTqqs24t2ntv.BYQetbBV) + * [2020-12-20 12:46:34+00:00 (F6JW6g2KbALBJGzLiHIGK2BCISCKT_Os)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=F6JW6g2KbALBJGzLiHIGK2BCISCKT_Os) + * [2020-12-20 12:24:31+00:00 (eImZIl.6uNnlBh5kXzJy0.Zifx5CIZI.)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=eImZIl.6uNnlBh5kXzJy0.Zifx5CIZI.) + * [2020-12-20 12:22:37+00:00 (Tk2H4bwVKKa3pj7K9CzZi.JSMpFTNdQw)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=Tk2H4bwVKKa3pj7K9CzZi.JSMpFTNdQw) + * [2020-12-20 11:55:28+00:00 (BH5zAM4i12s1JLmyMPLf2fAQI9LsrQbo)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=BH5zAM4i12s1JLmyMPLf2fAQI9LsrQbo) +## aws-account-automation/IAM-ExpireUsers-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/IAM-ExpireUsers-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (RzVhQkNp_v8efksVh72TrIOtm8P9F74d)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=RzVhQkNp_v8efksVh72TrIOtm8P9F74d) + * [2023-12-09 14:38:03+00:00 (szyU5vYRr4ePIBTkx4ob7uBHdFU0xCdH)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=szyU5vYRr4ePIBTkx4ob7uBHdFU0xCdH) + * [2023-12-09 14:31:27+00:00 (glEwFGEznve9lWbW.mu0JB7tkUTWpnqc)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=glEwFGEznve9lWbW.mu0JB7tkUTWpnqc) + * [2023-12-09 14:29:25+00:00 (oqY4yDNWiag3uFhGwdYLbaQ0Oi1Yqqp8)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=oqY4yDNWiag3uFhGwdYLbaQ0Oi1Yqqp8) + * [2023-12-09 14:28:26+00:00 (lMNI_vsDJWbnlYG_miHouhW7VrYuRnyI)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=lMNI_vsDJWbnlYG_miHouhW7VrYuRnyI) + * [2023-12-09 12:24:55+00:00 (7QTzlc_EdU1bogIm54Y_37zpbF.rwgP4)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=7QTzlc_EdU1bogIm54Y_37zpbF.rwgP4) + * [2023-12-09 12:21:58+00:00 (KjttjUIoGrXZFrV4WLS4cAAAQew0DFQs)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=KjttjUIoGrXZFrV4WLS4cAAAQew0DFQs) + * [2020-12-20 12:47:21+00:00 (Nlxp4_Gnw8Dhw0AGGiYaaISNU0WEP4Q0)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=Nlxp4_Gnw8Dhw0AGGiYaaISNU0WEP4Q0) + * [2020-12-20 12:46:34+00:00 (H43YkSKO75rjouIJAdKaHqDLDqak1Ana)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=H43YkSKO75rjouIJAdKaHqDLDqak1Ana) + * [2020-12-20 12:24:31+00:00 (ORkWr4kk_Rw3D3p.XHPnoO69_4QSBRt0)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=ORkWr4kk_Rw3D3p.XHPnoO69_4QSBRt0) + * [2020-12-20 12:22:37+00:00 (_BojFG9FM8Q2DQ.XkG.M4wT2PShDuXh6)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=_BojFG9FM8Q2DQ.XkG.M4wT2PShDuXh6) + * [2020-12-20 11:55:28+00:00 (3F6_6w7hIgMTt7QFVFLWVYI6.RFDpTPl)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=3F6_6w7hIgMTt7QFVFLWVYI6.RFDpTPl) +## aws-account-automation/OrgCloudTrail-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/OrgCloudTrail-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (ilZdSO0yK_hfRrnR8sDxH2GYHLJtjL7_)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=ilZdSO0yK_hfRrnR8sDxH2GYHLJtjL7_) + * [2023-12-09 14:38:03+00:00 (lZZoHDxSS1EI4J.60nItVGCsYOSvJxcJ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=lZZoHDxSS1EI4J.60nItVGCsYOSvJxcJ) + * [2023-12-09 14:31:27+00:00 (_v7wHaC.ut50Bf2XhqVQg6XHOZ9_RGeA)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=_v7wHaC.ut50Bf2XhqVQg6XHOZ9_RGeA) + * [2023-12-09 14:29:25+00:00 (8KARKWkcE0AIrJEsZkPPupSsSqF6w8In)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=8KARKWkcE0AIrJEsZkPPupSsSqF6w8In) + * [2023-12-09 14:28:26+00:00 (.XHlvRuVvLT84KHNGyAD2WQJl9eXn46W)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=.XHlvRuVvLT84KHNGyAD2WQJl9eXn46W) + * [2023-12-09 12:24:55+00:00 (kSQtIvIyv8_MTdY1U2p619ngQK1yASz8)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=kSQtIvIyv8_MTdY1U2p619ngQK1yASz8) + * [2023-12-09 12:21:58+00:00 (8XiHzAS.zgPRe.LhDTd2K7zs4pUe8s8c)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=8XiHzAS.zgPRe.LhDTd2K7zs4pUe8s8c) +## aws-account-automation/OrgCloudTrailBucket-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/OrgCloudTrailBucket-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (Wf9RjxCl4TMzK3RLpU12jDw8XW7ievCo)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=Wf9RjxCl4TMzK3RLpU12jDw8XW7ievCo) + * [2023-12-09 14:38:03+00:00 (rTW3br2fITp8XO.IyIUPUZChEzqwUvtb)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=rTW3br2fITp8XO.IyIUPUZChEzqwUvtb) + * [2023-12-09 14:31:27+00:00 (wxEtcSUfxBxBDh.6GssJ2qJ9KWd1Gstg)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=wxEtcSUfxBxBDh.6GssJ2qJ9KWd1Gstg) + * [2023-12-09 14:29:25+00:00 (QYcpYGYmGPkrjbBCO1SmH3hREVo5zchg)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=QYcpYGYmGPkrjbBCO1SmH3hREVo5zchg) + * [2023-12-09 14:28:26+00:00 (LIEl8UYpIY5XOhde_h9.Poqkb94xx8h9)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=LIEl8UYpIY5XOhde_h9.Poqkb94xx8h9) + * [2023-12-09 12:24:55+00:00 (dYHEK9sh3w58LnmA61Y.iUfsjpjAHa1_)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=dYHEK9sh3w58LnmA61Y.iUfsjpjAHa1_) + * [2023-12-09 12:21:59+00:00 (xqIoN4VV_BOxOxloShVQ7t1M_HadzMVc)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=xqIoN4VV_BOxOxloShVQ7t1M_HadzMVc) +## aws-account-automation/ResponderRole-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/ResponderRole-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (6MqnvxQcgNIkIiE9ka17aED2vGr_WgkJ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=6MqnvxQcgNIkIiE9ka17aED2vGr_WgkJ) + * [2023-12-09 14:38:03+00:00 (WupR4..ErV_7l5zCCSbJsUoDSVlbY7fw)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=WupR4..ErV_7l5zCCSbJsUoDSVlbY7fw) + * [2023-12-09 14:31:27+00:00 (BS80BTkIi0tzTd3R2KaALqh3LGZLPRYV)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=BS80BTkIi0tzTd3R2KaALqh3LGZLPRYV) + * [2023-12-09 14:29:25+00:00 (RP4Ag5_jYbLHYkv_0V_DaGtx6eHmbA9H)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=RP4Ag5_jYbLHYkv_0V_DaGtx6eHmbA9H) + * [2023-12-09 14:28:26+00:00 (1t2_TV7n1wHjPmgC90iE39oZST1tejrV)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=1t2_TV7n1wHjPmgC90iE39oZST1tejrV) + * [2023-12-09 12:24:55+00:00 (eUvGq__tRYVMkDLkO1oCK0zTAf6nR7Gw)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=eUvGq__tRYVMkDLkO1oCK0zTAf6nR7Gw) + * [2023-12-09 12:21:59+00:00 (xWJ8HVxf.88LncAU8e8r5_vlsvdh9LBW)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=xWJ8HVxf.88LncAU8e8r5_vlsvdh9LBW) +## aws-account-automation/SESRuleToSlack-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/SESRuleToSlack-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (rGXW7l7q4CWLvBaabOvcmvrbeYYfJj_t)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=rGXW7l7q4CWLvBaabOvcmvrbeYYfJj_t) + * [2023-12-09 14:38:03+00:00 (z4IX5gfJ9ConJ5R2qhrCOGYhgoR6_fEZ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=z4IX5gfJ9ConJ5R2qhrCOGYhgoR6_fEZ) + * [2023-12-09 14:31:27+00:00 (_unIScroysoZ5rHp.KmBveRIZ1lj7AQU)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=_unIScroysoZ5rHp.KmBveRIZ1lj7AQU) + * [2023-12-09 14:29:25+00:00 (3og232zLL2ZBRWpoteraxSRFJeODUJrf)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=3og232zLL2ZBRWpoteraxSRFJeODUJrf) + * [2023-12-09 14:28:26+00:00 (yctLqoJk4LNVDGQtlWyj4KiZCZOYaMmC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=yctLqoJk4LNVDGQtlWyj4KiZCZOYaMmC) + * [2023-12-09 12:24:55+00:00 (JJnOIAK_GFk3dUwS2ubdt0kkulKxnuSw)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=JJnOIAK_GFk3dUwS2ubdt0kkulKxnuSw) + * [2023-12-09 12:21:59+00:00 (9rUa_iDxX7HLqoLB60RPtPm0o42JYr.2)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=9rUa_iDxX7HLqoLB60RPtPm0o42JYr.2) +## aws-account-automation/SecurityAlertChatBot-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/SecurityAlertChatBot-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (5NP0MOCjoK8iyrDU1lliCAJlSORMG11N)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=5NP0MOCjoK8iyrDU1lliCAJlSORMG11N) + * [2023-12-09 14:38:03+00:00 (0Pgne2CCCf1ZAsL9P7LwaxnACYW9U3Sf)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=0Pgne2CCCf1ZAsL9P7LwaxnACYW9U3Sf) + * [2023-12-09 14:31:27+00:00 (fxF04liaNmrfjLIdEN.P9OsGKoBj4TCh)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=fxF04liaNmrfjLIdEN.P9OsGKoBj4TCh) + * [2023-12-09 14:29:25+00:00 (OgrfxwS.1gABhqe5Z.SH4Onlh49vIUBZ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=OgrfxwS.1gABhqe5Z.SH4Onlh49vIUBZ) + * [2023-12-09 14:28:26+00:00 (38hE2ryZ_0Nl9wz4au97xBjvae5g3kna)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=38hE2ryZ_0Nl9wz4au97xBjvae5g3kna) + * [2023-12-09 12:24:55+00:00 (qhnR5IuNqh4VCE0WZ2k_srBrOCAFSlsB)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=qhnR5IuNqh4VCE0WZ2k_srBrOCAFSlsB) + * [2023-12-09 12:21:59+00:00 (djt4.y5IKAyzyqk3R3nZEXNc9ft339hU)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=djt4.y5IKAyzyqk3R3nZEXNc9ft339hU) +## aws-account-automation/SecurityRole-StackSetTemplate.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/SecurityRole-StackSetTemplate.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (LTtsvioZUVMTWFLw.p8IyYMvnNYrFKvy)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=LTtsvioZUVMTWFLw.p8IyYMvnNYrFKvy) + * [2023-12-09 14:38:03+00:00 (K7cSvvE3Ip4sP6Q6d2nJ5VXSg711NAWB)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=K7cSvvE3Ip4sP6Q6d2nJ5VXSg711NAWB) + * [2023-12-09 14:31:27+00:00 (mYB_fvmIyyBPO5jhT7A9PbyzlRdPYFCt)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=mYB_fvmIyyBPO5jhT7A9PbyzlRdPYFCt) + * [2023-12-09 14:29:25+00:00 (rfH5YfB.t4Bbq4WUvdbtmiaYKg3kvDD6)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=rfH5YfB.t4Bbq4WUvdbtmiaYKg3kvDD6) + * [2023-12-09 14:28:26+00:00 (2oLF24d6P824reSP4VlVpXQsJhG6Vdhx)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=2oLF24d6P824reSP4VlVpXQsJhG6Vdhx) + * [2023-12-09 12:24:55+00:00 (ZVOaLvrExsS7Jko99Ko9_b3cVPpcgu3W)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=ZVOaLvrExsS7Jko99Ko9_b3cVPpcgu3W) + * [2023-12-09 12:21:59+00:00 (iDNK9Lad1V2rNnadQ1Ok7CV4.bjnMG0p)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=iDNK9Lad1V2rNnadQ1Ok7CV4.bjnMG0p) +## aws-account-automation/VPCFlowLogBucket-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/VPCFlowLogBucket-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (tEDiPutq0RLXQYsDhUS6Bd0ZexX1_Ims)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=tEDiPutq0RLXQYsDhUS6Bd0ZexX1_Ims) + * [2023-12-09 14:38:03+00:00 (q_jsXctWZ3ivF43kzdzCn.n5SGMtUV6I)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=q_jsXctWZ3ivF43kzdzCn.n5SGMtUV6I) + * [2023-12-09 14:31:27+00:00 (x4y7qCW7xC8SlMFvF3YYiRjOrhr9.2y7)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=x4y7qCW7xC8SlMFvF3YYiRjOrhr9.2y7) + * [2023-12-09 14:29:25+00:00 (mV.4FEGc1DvKnWuvyohWnlLVqvNCXIsr)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=mV.4FEGc1DvKnWuvyohWnlLVqvNCXIsr) + * [2023-12-09 14:28:26+00:00 (8X6CITpawPRqTgc90DG4LP8vv3YLbIYU)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=8X6CITpawPRqTgc90DG4LP8vv3YLbIYU) + * [2023-12-09 12:24:55+00:00 (PIqAInnozkdqO.YRO7KKsK9VyYClBkZc)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=PIqAInnozkdqO.YRO7KKsK9VyYClBkZc) + * [2023-12-09 12:21:59+00:00 (ml0pHOMpETti6islVTipWmXyOYr2V4Qj)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=ml0pHOMpETti6islVTipWmXyOYr2V4Qj) +## aws-account-automation/requireMFA-Template.yaml +* [Quick Deploy URL](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https%3A//pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml) +* [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml) +* S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/requireMFA-Template.yaml +* Previous Version HTTP URLs: + * [2023-12-09 14:45:42+00:00 (231wZOOEzlyNxUBtgkfwrEPLHZwpkKCe)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=231wZOOEzlyNxUBtgkfwrEPLHZwpkKCe) + * [2023-12-09 14:38:03+00:00 (k7YGhusMqm7huK5I9UwAHBd_uzhHXtaI)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=k7YGhusMqm7huK5I9UwAHBd_uzhHXtaI) + * [2023-12-09 14:31:27+00:00 (_xmg2SNGXwWjqPsSETTx1U418jykRM7l)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=_xmg2SNGXwWjqPsSETTx1U418jykRM7l) + * [2023-12-09 14:29:25+00:00 (PC5EMz49.o8hRi8_lTI9WngdfmkMMIZP)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=PC5EMz49.o8hRi8_lTI9WngdfmkMMIZP) + * [2023-12-09 14:28:26+00:00 (7MmvU2WlAtaCr3hryBb.9DcCY_JOunIS)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=7MmvU2WlAtaCr3hryBb.9DcCY_JOunIS) + * [2023-12-09 12:24:55+00:00 (KN83x1jFyE.FLeqy1iCLXkpJArnMwYiS)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=KN83x1jFyE.FLeqy1iCLXkpJArnMwYiS) + * [2023-12-09 12:21:59+00:00 (nfHqKBtPiQ6qQ4JcMq_3cs8Gg2AIILgm)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=nfHqKBtPiQ6qQ4JcMq_3cs8Gg2AIILgm) + * [2020-12-20 12:47:21+00:00 (VpOhToQMBDH5sxHFrKGfw2vALZQ3oRc9)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=VpOhToQMBDH5sxHFrKGfw2vALZQ3oRc9) + * [2020-12-20 12:46:34+00:00 (q1wtRnfWtocFCXzxl3I6Y2.YIdf6VfqS)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=q1wtRnfWtocFCXzxl3I6Y2.YIdf6VfqS) + * [2020-12-20 12:24:31+00:00 (.eeOMP5oNX.AewkoNiKG7aHgGwk7QYYn)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=.eeOMP5oNX.AewkoNiKG7aHgGwk7QYYn) + * [2020-12-20 12:22:37+00:00 (a67oM3fNnncJKUY5pD3v7P7rkrmzI9w4)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=a67oM3fNnncJKUY5pD3v7P7rkrmzI9w4) + * [2020-12-20 11:55:28+00:00 (h1RSk9q0IL9mjenFGS.54SRihz6ogfk4)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=h1RSk9q0IL9mjenFGS.54SRihz6ogfk4) From c2199f8f30d3cd55c811fc5b2aa5296b732ebf3d Mon Sep 17 00:00:00 2001 From: Chris Farris Date: Sat, 9 Dec 2023 09:54:29 -0500 Subject: [PATCH 09/12] Update Prod Links --- .github/workflows/sync-to-prod.yaml | 14 ++++----- README.md | 46 +---------------------------- 2 files changed, 6 insertions(+), 54 deletions(-) diff --git a/.github/workflows/sync-to-prod.yaml b/.github/workflows/sync-to-prod.yaml index aa6dcce..009ebd7 100644 --- a/.github/workflows/sync-to-prod.yaml +++ b/.github/workflows/sync-to-prod.yaml @@ -21,19 +21,15 @@ jobs: --s3-prefix aws-account-automation-lambda-transform --output-template-file cloudformation/BillingMetrics-Template-Transformed.yaml \ --metadata build_ver=$(git rev-parse --short "$GITHUB_SHA") - aws s3 sync --delete cloudformation/ s3://${S3_BUCKET}/aws-account-automation/ - - for object in `aws s3api list-objects-v2 --bucket ${S3_BUCKET} --prefix aws-account-automation/ --query Contents[].[Key] --output text` ; do - aws s3api list-object-versions --bucket ${S3_BUCKET} --prefix ${object} --query Versions[].[Key,VersionId,LastModified] --output text --max-items 3 - done | grep -v ^None$ > Latest-Versions.txt - - aws s3api list-object-versions --bucket pht-cloudformation --prefix aws-account-automation/ --query Versions[].[Key,VersionId,LastModified] --output text > Versions.txt + aws s3 sync --delete cloudformation/ s3://${S3_BUCKET}/aws-account-automation/ --content-type text/plain + pip install boto3 + .github/workflows/index_files.py > Test-Links.md git config user.name github-actions git config user.email github-actions@github.com - git add Versions.txt Latest-Versions.txt - git commit -m "AutoGenerated Object Versions" + git add Links.md + git commit -m "AutoGenerated Links File" git push env: diff --git a/README.md b/README.md index c958739..811bbf0 100644 --- a/README.md +++ b/README.md @@ -23,49 +23,5 @@ Tools to Automate your AWS Account ## Hosting -The most recent version of all these templates are hosted in S3 for Easy Deployment. - -Directly callable URLS: -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/AWSConfigAggregator-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/AWSConfigRecorder-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/AccountAlertTopics-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/AuditRole-StackSetTemplate.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/AuditRole-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/BillingBucket-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/BillingMetrics-Template-Transformed.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/BillingMetrics-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/CloudTrail-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/CloudTrailConfigBucket-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/EBSAutomatedTagging.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/GuardDuty-to-Slack-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/IAM-ExpireUsers-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/OrgCloudTrail-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/requireMFA-Template.yaml -* https://s3.amazonaws.com/pht-cloudformation/aws-account-automation/SESRuleToSlack-Template.yaml - -S3 Paths: -* s3://pht-cloudformation/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml -* s3://pht-cloudformation/aws-account-automation/AWSConfigAggregator-Template.yaml -* s3://pht-cloudformation/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml -* s3://pht-cloudformation/aws-account-automation/AWSConfigRecorder-Template.yaml -* s3://pht-cloudformation/aws-account-automation/AccountAlertTopics-Template.yaml -* s3://pht-cloudformation/aws-account-automation/AuditRole-StackSetTemplate.yaml -* s3://pht-cloudformation/aws-account-automation/AuditRole-Template.yaml -* s3://pht-cloudformation/aws-account-automation/BillingBucket-Template.yaml -* s3://pht-cloudformation/aws-account-automation/BillingMetrics-Template-Transformed.yaml -* s3://pht-cloudformation/aws-account-automation/BillingMetrics-Template.yaml -* s3://pht-cloudformation/aws-account-automation/CloudTrail-Template.yaml -* s3://pht-cloudformation/aws-account-automation/CloudTrailConfigBucket-Template.yaml -* s3://pht-cloudformation/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml -* s3://pht-cloudformation/aws-account-automation/EBSAutomatedTagging.yaml -* s3://pht-cloudformation/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml -* s3://pht-cloudformation/aws-account-automation/GuardDuty-to-Slack-Template.yaml -* s3://pht-cloudformation/aws-account-automation/IAM-ExpireUsers-Template.yaml -* s3://pht-cloudformation/aws-account-automation/OrgCloudTrail-Template.yaml -* s3://pht-cloudformation/aws-account-automation/requireMFA-Template.yaml -* s3://pht-cloudformation/aws-account-automation/SESRuleToSlack-Template.yaml +The most recent version of all these templates are hosted in S3 for Easy Deployment. You can find the latest HTTP URL, S3 URL, QuickDeploy Links and HTTP URLs for previous versions in the [Links.md](Links.md) file. From 5ae988bbe783c3179717e3ca493479c4fdeffb0e Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 9 Dec 2023 14:55:03 +0000 Subject: [PATCH 10/12] AutoGenerated Links File --- Test-Links.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/Test-Links.md b/Test-Links.md index 44c8dfd..edd39d1 100644 --- a/Test-Links.md +++ b/Test-Links.md @@ -3,6 +3,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:57+00:00 (9FDAp.cDnvMMAwf_QDxF2TNLv3qD6YrL)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=9FDAp.cDnvMMAwf_QDxF2TNLv3qD6YrL) * [2023-12-09 14:45:42+00:00 (mAmSKUQFeJFvEimpTnMjLCwGCqfOVd4y)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=mAmSKUQFeJFvEimpTnMjLCwGCqfOVd4y) * [2023-12-09 14:38:03+00:00 (8i8neCMagKa.bW2eJX3jfgvAPisxl18E)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=8i8neCMagKa.bW2eJX3jfgvAPisxl18E) * [2023-12-09 14:31:27+00:00 (C_j0kISja5eGpOPXuo27FBwjM3X052ho)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=C_j0kISja5eGpOPXuo27FBwjM3X052ho) @@ -20,6 +21,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AWSConfigBucket-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:57+00:00 (NsYCG_ntdctmx0fHa4JBORODAWo_Cwy_)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=NsYCG_ntdctmx0fHa4JBORODAWo_Cwy_) * [2023-12-09 14:45:42+00:00 (fe6VxXuZLidMTxNYslnqsFIHPOHNEz6J)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=fe6VxXuZLidMTxNYslnqsFIHPOHNEz6J) * [2023-12-09 14:38:03+00:00 (3UipFwY09OtM2kT5rMgI98K7vZonPiXm)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=3UipFwY09OtM2kT5rMgI98K7vZonPiXm) * [2023-12-09 14:31:27+00:00 (ktPvtjk9pxNL5FjDD.O5leyPeuJbFyZD)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=ktPvtjk9pxNL5FjDD.O5leyPeuJbFyZD) @@ -32,6 +34,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:57+00:00 (OGP30.P8MsezQnY5y4sTUdU8ykS78DJ.)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=OGP30.P8MsezQnY5y4sTUdU8ykS78DJ.) * [2023-12-09 14:45:42+00:00 (CXMHH2EIYnWCrdJ0jIUPvI62GuY0OpkR)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=CXMHH2EIYnWCrdJ0jIUPvI62GuY0OpkR) * [2023-12-09 14:38:03+00:00 (qqJbpj5Bam20oB_zifC8bttLVBbKuZhF)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=qqJbpj5Bam20oB_zifC8bttLVBbKuZhF) * [2023-12-09 14:31:27+00:00 (JsB57s2u6rjoFUOYlxQ8ezxPyiidp9hD)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=JsB57s2u6rjoFUOYlxQ8ezxPyiidp9hD) @@ -44,6 +47,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AWSConfigRecorder-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:57+00:00 (k8FrD1f64DTCSiPxH7h102F.JmvIEryB)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=k8FrD1f64DTCSiPxH7h102F.JmvIEryB) * [2023-12-09 14:45:42+00:00 (LYgaSrid3e.UlXgMPOTfBK5w7v6ZGSmP)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=LYgaSrid3e.UlXgMPOTfBK5w7v6ZGSmP) * [2023-12-09 14:38:03+00:00 (Xwul7uWplCa3XOHlT2UV2Kav_PsIbwLM)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=Xwul7uWplCa3XOHlT2UV2Kav_PsIbwLM) * [2023-12-09 14:31:27+00:00 (Ib15Q26RML1gdqXqAsAe0Rf8gl9JM557)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=Ib15Q26RML1gdqXqAsAe0Rf8gl9JM557) @@ -56,6 +60,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:57+00:00 (7Po6DHebSnMc.4Brry.92BDN3VaMJXYP)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=7Po6DHebSnMc.4Brry.92BDN3VaMJXYP) * [2023-12-09 14:45:42+00:00 (ozT01mK51bEqPZPBOImTWvnNlOClSpRI)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=ozT01mK51bEqPZPBOImTWvnNlOClSpRI) * [2023-12-09 14:38:03+00:00 (Q1_xj1HkaiLlusq7anXdrJEl1_aYTwPW)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=Q1_xj1HkaiLlusq7anXdrJEl1_aYTwPW) * [2023-12-09 14:31:27+00:00 (yf8rMp1XnrisBeT18DMuCpgBH6jIMZRD)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=yf8rMp1XnrisBeT18DMuCpgBH6jIMZRD) @@ -68,6 +73,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AccessAnalyzerAlert-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:57+00:00 (wcNG52mq3thGE8OkMMbE_rwbq6e9dFgC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=wcNG52mq3thGE8OkMMbE_rwbq6e9dFgC) * [2023-12-09 14:45:42+00:00 (RiRhvQO0nj.P2ul1Ft3GHc4JD_DPwapW)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=RiRhvQO0nj.P2ul1Ft3GHc4JD_DPwapW) * [2023-12-09 14:38:03+00:00 (OKvdPrNHLZP9UrKwx26axy17YK8QPTnZ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=OKvdPrNHLZP9UrKwx26axy17YK8QPTnZ) * [2023-12-09 14:31:27+00:00 (whptq2JuCS0p9_hkL8AjLvnU9qWF31Cg)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=whptq2JuCS0p9_hkL8AjLvnU9qWF31Cg) @@ -80,6 +86,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AccountAlertTopics-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:57+00:00 (2dF4jaXXtSftXdllQbldxidP86s.Ytfb)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=2dF4jaXXtSftXdllQbldxidP86s.Ytfb) * [2023-12-09 14:45:42+00:00 (8EwVfOnlICBOumMll.0Vh13BhcPp11CH)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=8EwVfOnlICBOumMll.0Vh13BhcPp11CH) * [2023-12-09 14:38:03+00:00 (x3pLJtyM9i1TkMMpZ_flCZgr6ZmO.ypl)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=x3pLJtyM9i1TkMMpZ_flCZgr6ZmO.ypl) * [2023-12-09 14:31:27+00:00 (1nSbfEkIW19qPpjVbLyH.QgVgBkzojIm)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=1nSbfEkIW19qPpjVbLyH.QgVgBkzojIm) @@ -97,6 +104,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:57+00:00 (_kbk8.mRaoOoftwioMcrQP5YgAqMVJOQ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=_kbk8.mRaoOoftwioMcrQP5YgAqMVJOQ) * [2023-12-09 14:45:42+00:00 (h4Y2N5Gk64AdbHFZpMS3Gv_AoeYA61E2)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=h4Y2N5Gk64AdbHFZpMS3Gv_AoeYA61E2) * [2023-12-09 14:38:03+00:00 (ZjEjV98h7MWWCZc9ot_n06X8SH9SvHdp)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=ZjEjV98h7MWWCZc9ot_n06X8SH9SvHdp) * [2023-12-09 14:31:27+00:00 (m9O3ue_PNImaZPCiw4c.VedsBQv8XXEo)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=m9O3ue_PNImaZPCiw4c.VedsBQv8XXEo) @@ -109,6 +117,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AuditRole-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:57+00:00 (FxljsR2wWwN5H9yA4zo0LEZjZgQ.3rk_)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=FxljsR2wWwN5H9yA4zo0LEZjZgQ.3rk_) * [2023-12-09 14:45:42+00:00 (64Sx1nBb7KjrrHafbYbWrqH8GocGe3vC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=64Sx1nBb7KjrrHafbYbWrqH8GocGe3vC) * [2023-12-09 14:38:03+00:00 (IvjSYlCXB68bV47X9syOAZxB5TaA2DoC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=IvjSYlCXB68bV47X9syOAZxB5TaA2DoC) * [2023-12-09 14:31:27+00:00 (BXAih4qeknTvH3EJUlU2YgVLZJuIKJX5)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=BXAih4qeknTvH3EJUlU2YgVLZJuIKJX5) @@ -126,6 +135,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/BillingBucket-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:57+00:00 (L3gAoPP2nWAvfXSycrEFDd4eA8OCcHdg)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=L3gAoPP2nWAvfXSycrEFDd4eA8OCcHdg) * [2023-12-09 14:45:42+00:00 (X21jhX80D_7F4G7IEk15sMBLEs7Wds8c)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=X21jhX80D_7F4G7IEk15sMBLEs7Wds8c) * [2023-12-09 14:38:03+00:00 (6M3xkOMmurRThPoe.TLxFAZig3C6tGvV)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=6M3xkOMmurRThPoe.TLxFAZig3C6tGvV) * [2023-12-09 14:31:27+00:00 (wavWM5zO7T12YfhYbekL6_N4wZjGwS5_)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=wavWM5zO7T12YfhYbekL6_N4wZjGwS5_) @@ -143,6 +153,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/BillingMetrics-Template-Transformed.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:57+00:00 (xNuz_zqcg3ZTlWQBk1_hqn6m9KLyQfcz)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=xNuz_zqcg3ZTlWQBk1_hqn6m9KLyQfcz) * [2023-12-09 14:45:42+00:00 (OUjBvYnQpPGznRcZ5DM5nbVPKlldaNTU)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=OUjBvYnQpPGznRcZ5DM5nbVPKlldaNTU) * [2023-12-09 14:38:03+00:00 (XkzJZ5tEI.WtxA5W9tQp1Y.SiXjUIGQ9)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=XkzJZ5tEI.WtxA5W9tQp1Y.SiXjUIGQ9) * [2023-12-09 14:31:27+00:00 (2zelhK.OXO84xl6yY7vg_qddSG5DD.A8)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=2zelhK.OXO84xl6yY7vg_qddSG5DD.A8) @@ -159,6 +170,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/BillingMetrics-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (blgYUUEzWxRDeG4cP6Ekw7rfv288QO7s)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=blgYUUEzWxRDeG4cP6Ekw7rfv288QO7s) * [2023-12-09 14:45:42+00:00 (npw7Q118wDusbCBAs4RkJs3Pb_dzO9Ft)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=npw7Q118wDusbCBAs4RkJs3Pb_dzO9Ft) * [2023-12-09 14:38:03+00:00 (izphBrktDbG5NwHRA6XJMEJsZt5pQg48)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=izphBrktDbG5NwHRA6XJMEJsZt5pQg48) * [2023-12-09 14:31:27+00:00 (HDDWZtovafcaohK0dW7RYHKEuyeVRN9y)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=HDDWZtovafcaohK0dW7RYHKEuyeVRN9y) @@ -175,6 +187,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/CloudTrail-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (GcdrVKy9RmILDv1kCeQo5tKS0Z8792mK)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=GcdrVKy9RmILDv1kCeQo5tKS0Z8792mK) * [2023-12-09 14:45:42+00:00 (Rzrwdxs3F346DpF0WGtYs08mi.q3Fj7d)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=Rzrwdxs3F346DpF0WGtYs08mi.q3Fj7d) * [2023-12-09 14:38:03+00:00 (jyYIpj3LQvuMjkx04HfLaIyGo_GM8IOC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=jyYIpj3LQvuMjkx04HfLaIyGo_GM8IOC) * [2023-12-09 14:31:27+00:00 (a8E2DThie2jAlUdmsU6FczS6BBXz51Wb)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=a8E2DThie2jAlUdmsU6FczS6BBXz51Wb) @@ -192,6 +205,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/CloudTrailConfigBucket-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (C.B9O6gG1lCM9z1q2soOcGC_9cBjguUs)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=C.B9O6gG1lCM9z1q2soOcGC_9cBjguUs) * [2023-12-09 14:45:42+00:00 (RTD6h6j19_d909arKELotgP6B9lOJmmN)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=RTD6h6j19_d909arKELotgP6B9lOJmmN) * [2023-12-09 14:38:03+00:00 (lOr6I0v8RxNdXCxCuhqpnG7Iaesn1JLe)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=lOr6I0v8RxNdXCxCuhqpnG7Iaesn1JLe) * [2023-12-09 14:31:27+00:00 (zgp12zcpMfcovWfZ7GHrMtSNkXwgCLH7)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=zgp12zcpMfcovWfZ7GHrMtSNkXwgCLH7) @@ -204,6 +218,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (9Dkef0J4C2xcOaLwKBXkh_TWWI8XIgLG)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=9Dkef0J4C2xcOaLwKBXkh_TWWI8XIgLG) * [2023-12-09 14:45:42+00:00 (RrHNFBn.eL8P7q7ELZvNNJBOQ3XVY5wV)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=RrHNFBn.eL8P7q7ELZvNNJBOQ3XVY5wV) * [2023-12-09 14:38:03+00:00 (iiD54cwrxazhgzoaQOeVHjFRSz6wMwkv)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=iiD54cwrxazhgzoaQOeVHjFRSz6wMwkv) * [2023-12-09 14:31:27+00:00 (KMSY5tLD8VfMZGMknLy1JtGTDdA8EIuM)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=KMSY5tLD8VfMZGMknLy1JtGTDdA8EIuM) @@ -221,6 +236,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/CostExplorerAlerts-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (fpx3.RJqJKhrBfLD8DL.V_HGETMsbPuW)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=fpx3.RJqJKhrBfLD8DL.V_HGETMsbPuW) * [2023-12-09 14:45:42+00:00 (.yC6O1Q7a0.QTg8.4LrE_MZL1T9is1zo)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=.yC6O1Q7a0.QTg8.4LrE_MZL1T9is1zo) * [2023-12-09 14:38:03+00:00 (htjrUGqGNMzMDDrYZqzEPxhKlv4PNsTk)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=htjrUGqGNMzMDDrYZqzEPxhKlv4PNsTk) * [2023-12-09 14:31:27+00:00 (dlFpfs.PMiD0pzqoyax2xhpTt5vdf_K_)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=dlFpfs.PMiD0pzqoyax2xhpTt5vdf_K_) @@ -233,6 +249,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/EBSAutomatedTagging.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (klAEp38eS.ohdbtar0PrrvgonmJdd011)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=klAEp38eS.ohdbtar0PrrvgonmJdd011) * [2023-12-09 14:45:42+00:00 (5MBPqOa.wcW0kREMJp6zNkYDq88q.D5b)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=5MBPqOa.wcW0kREMJp6zNkYDq88q.D5b) * [2023-12-09 14:38:03+00:00 (uU1_dzimYI8sfWVm14yVlcGT.nnCZLLZ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=uU1_dzimYI8sfWVm14yVlcGT.nnCZLLZ) * [2023-12-09 14:31:27+00:00 (kakMq6xzBePVXkdvbteu5W.q_VbiuQmK)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=kakMq6xzBePVXkdvbteu5W.q_VbiuQmK) @@ -250,6 +267,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (jETPdk4NFDI4BshkJxQi3Jieu8rRpWLT)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=jETPdk4NFDI4BshkJxQi3Jieu8rRpWLT) * [2023-12-09 14:45:42+00:00 (5nl_mSaEVIhPqCJgxaaLJn0edTUMXSdP)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=5nl_mSaEVIhPqCJgxaaLJn0edTUMXSdP) * [2023-12-09 14:38:03+00:00 (ApNAnAy5iclwOO1zl9ADXMSfkLcW7ffQ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=ApNAnAy5iclwOO1zl9ADXMSfkLcW7ffQ) * [2023-12-09 14:31:27+00:00 (CIMqscTcIBsyA4S9RopEK2A8WK1.XAuA)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=CIMqscTcIBsyA4S9RopEK2A8WK1.XAuA) @@ -262,6 +280,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/GuardDuty-to-Slack-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (VrSOit7DsmoLCMhbXsBWdRDocbBz2P5c)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=VrSOit7DsmoLCMhbXsBWdRDocbBz2P5c) * [2023-12-09 14:45:42+00:00 (vEft41x.ju2pZQxyD2Xsg3yT5OZDejyW)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=vEft41x.ju2pZQxyD2Xsg3yT5OZDejyW) * [2023-12-09 14:38:03+00:00 (rVpckbw7QsqLPZTf4a.753hqtIMNie8A)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=rVpckbw7QsqLPZTf4a.753hqtIMNie8A) * [2023-12-09 14:31:27+00:00 (WDXrtxXFebg1DsEnForkoO5FFElcl0aL)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=WDXrtxXFebg1DsEnForkoO5FFElcl0aL) @@ -279,6 +298,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/IAM-ExpireUsers-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (bDVoeu3TeF9iYWXw5_1NrqPeTyEM42J1)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=bDVoeu3TeF9iYWXw5_1NrqPeTyEM42J1) * [2023-12-09 14:45:42+00:00 (RzVhQkNp_v8efksVh72TrIOtm8P9F74d)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=RzVhQkNp_v8efksVh72TrIOtm8P9F74d) * [2023-12-09 14:38:03+00:00 (szyU5vYRr4ePIBTkx4ob7uBHdFU0xCdH)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=szyU5vYRr4ePIBTkx4ob7uBHdFU0xCdH) * [2023-12-09 14:31:27+00:00 (glEwFGEznve9lWbW.mu0JB7tkUTWpnqc)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=glEwFGEznve9lWbW.mu0JB7tkUTWpnqc) @@ -296,6 +316,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/OrgCloudTrail-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (ptqOlg_bV965dJlQDbJ1nZJYC9hXkt9y)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=ptqOlg_bV965dJlQDbJ1nZJYC9hXkt9y) * [2023-12-09 14:45:42+00:00 (ilZdSO0yK_hfRrnR8sDxH2GYHLJtjL7_)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=ilZdSO0yK_hfRrnR8sDxH2GYHLJtjL7_) * [2023-12-09 14:38:03+00:00 (lZZoHDxSS1EI4J.60nItVGCsYOSvJxcJ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=lZZoHDxSS1EI4J.60nItVGCsYOSvJxcJ) * [2023-12-09 14:31:27+00:00 (_v7wHaC.ut50Bf2XhqVQg6XHOZ9_RGeA)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=_v7wHaC.ut50Bf2XhqVQg6XHOZ9_RGeA) @@ -308,6 +329,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/OrgCloudTrailBucket-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (JJiraxlXxCiJzQnMGCDK6NBXrmhj_iM2)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=JJiraxlXxCiJzQnMGCDK6NBXrmhj_iM2) * [2023-12-09 14:45:42+00:00 (Wf9RjxCl4TMzK3RLpU12jDw8XW7ievCo)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=Wf9RjxCl4TMzK3RLpU12jDw8XW7ievCo) * [2023-12-09 14:38:03+00:00 (rTW3br2fITp8XO.IyIUPUZChEzqwUvtb)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=rTW3br2fITp8XO.IyIUPUZChEzqwUvtb) * [2023-12-09 14:31:27+00:00 (wxEtcSUfxBxBDh.6GssJ2qJ9KWd1Gstg)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=wxEtcSUfxBxBDh.6GssJ2qJ9KWd1Gstg) @@ -320,6 +342,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/ResponderRole-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (wEgB4.8l7v8dEYhmjM5o5HWIufq2l4qG)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=wEgB4.8l7v8dEYhmjM5o5HWIufq2l4qG) * [2023-12-09 14:45:42+00:00 (6MqnvxQcgNIkIiE9ka17aED2vGr_WgkJ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=6MqnvxQcgNIkIiE9ka17aED2vGr_WgkJ) * [2023-12-09 14:38:03+00:00 (WupR4..ErV_7l5zCCSbJsUoDSVlbY7fw)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=WupR4..ErV_7l5zCCSbJsUoDSVlbY7fw) * [2023-12-09 14:31:27+00:00 (BS80BTkIi0tzTd3R2KaALqh3LGZLPRYV)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=BS80BTkIi0tzTd3R2KaALqh3LGZLPRYV) @@ -332,6 +355,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/SESRuleToSlack-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (Lp7hMFSJuzidadh9h_SO9vP8N7l6bB6S)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=Lp7hMFSJuzidadh9h_SO9vP8N7l6bB6S) * [2023-12-09 14:45:42+00:00 (rGXW7l7q4CWLvBaabOvcmvrbeYYfJj_t)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=rGXW7l7q4CWLvBaabOvcmvrbeYYfJj_t) * [2023-12-09 14:38:03+00:00 (z4IX5gfJ9ConJ5R2qhrCOGYhgoR6_fEZ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=z4IX5gfJ9ConJ5R2qhrCOGYhgoR6_fEZ) * [2023-12-09 14:31:27+00:00 (_unIScroysoZ5rHp.KmBveRIZ1lj7AQU)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=_unIScroysoZ5rHp.KmBveRIZ1lj7AQU) @@ -344,6 +368,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/SecurityAlertChatBot-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (WPMJknkz6Up..3Rg0a1CybVMHXRdibjf)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=WPMJknkz6Up..3Rg0a1CybVMHXRdibjf) * [2023-12-09 14:45:42+00:00 (5NP0MOCjoK8iyrDU1lliCAJlSORMG11N)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=5NP0MOCjoK8iyrDU1lliCAJlSORMG11N) * [2023-12-09 14:38:03+00:00 (0Pgne2CCCf1ZAsL9P7LwaxnACYW9U3Sf)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=0Pgne2CCCf1ZAsL9P7LwaxnACYW9U3Sf) * [2023-12-09 14:31:27+00:00 (fxF04liaNmrfjLIdEN.P9OsGKoBj4TCh)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=fxF04liaNmrfjLIdEN.P9OsGKoBj4TCh) @@ -356,6 +381,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/SecurityRole-StackSetTemplate.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (FFBbg8Lth61lPDuTjw27dr2TXK.RgYro)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=FFBbg8Lth61lPDuTjw27dr2TXK.RgYro) * [2023-12-09 14:45:42+00:00 (LTtsvioZUVMTWFLw.p8IyYMvnNYrFKvy)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=LTtsvioZUVMTWFLw.p8IyYMvnNYrFKvy) * [2023-12-09 14:38:03+00:00 (K7cSvvE3Ip4sP6Q6d2nJ5VXSg711NAWB)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=K7cSvvE3Ip4sP6Q6d2nJ5VXSg711NAWB) * [2023-12-09 14:31:27+00:00 (mYB_fvmIyyBPO5jhT7A9PbyzlRdPYFCt)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=mYB_fvmIyyBPO5jhT7A9PbyzlRdPYFCt) @@ -368,6 +394,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/VPCFlowLogBucket-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (n1agqHZhxDwM7Xf390fth9pW5INOQhJU)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=n1agqHZhxDwM7Xf390fth9pW5INOQhJU) * [2023-12-09 14:45:42+00:00 (tEDiPutq0RLXQYsDhUS6Bd0ZexX1_Ims)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=tEDiPutq0RLXQYsDhUS6Bd0ZexX1_Ims) * [2023-12-09 14:38:03+00:00 (q_jsXctWZ3ivF43kzdzCn.n5SGMtUV6I)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=q_jsXctWZ3ivF43kzdzCn.n5SGMtUV6I) * [2023-12-09 14:31:27+00:00 (x4y7qCW7xC8SlMFvF3YYiRjOrhr9.2y7)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=x4y7qCW7xC8SlMFvF3YYiRjOrhr9.2y7) @@ -380,6 +407,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/requireMFA-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:54:58+00:00 (26hU6d0s4PALK0QuymP0Fj2fRayROPWP)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=26hU6d0s4PALK0QuymP0Fj2fRayROPWP) * [2023-12-09 14:45:42+00:00 (231wZOOEzlyNxUBtgkfwrEPLHZwpkKCe)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=231wZOOEzlyNxUBtgkfwrEPLHZwpkKCe) * [2023-12-09 14:38:03+00:00 (k7YGhusMqm7huK5I9UwAHBd_uzhHXtaI)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=k7YGhusMqm7huK5I9UwAHBd_uzhHXtaI) * [2023-12-09 14:31:27+00:00 (_xmg2SNGXwWjqPsSETTx1U418jykRM7l)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=_xmg2SNGXwWjqPsSETTx1U418jykRM7l) From 593b78d83b3391be33d010cc464dfbcb832f33a8 Mon Sep 17 00:00:00 2001 From: Chris Farris Date: Sat, 9 Dec 2023 09:56:14 -0500 Subject: [PATCH 11/12] Removed old files. They sucked anyway --- Latest-Versions.txt | 80 --- Versions.txt | 1246 ------------------------------------------- 2 files changed, 1326 deletions(-) delete mode 100644 Latest-Versions.txt delete mode 100644 Versions.txt diff --git a/Latest-Versions.txt b/Latest-Versions.txt deleted file mode 100644 index 33ad955..0000000 --- a/Latest-Versions.txt +++ /dev/null @@ -1,80 +0,0 @@ -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml 1phR3TbTwT_rkzmttzjnrdv7I3woLQwe 2023-11-17T19:41:52+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml dMOsJRF0OJ2UHwXb4lDnoVKcbVq_yXcS 2023-10-21T12:57:40+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml ki8Vh0IRZQ0_QmVJZhqg_A5Dq8gfKk0L 2023-10-21T12:12:42+00:00 -aws-account-automation/AWSConfigBucket-Template.yaml Ka1wMNWgrwzDeH.TEV8ArZJi0ycL.Ec. 2023-11-17T19:41:52+00:00 -aws-account-automation/AWSConfigBucket-Template.yaml nERcEr6eZQOuxlpAX.1WsZ8o3RyuH8GG 2023-10-21T12:57:40+00:00 -aws-account-automation/AWSConfigBucket-Template.yaml 2Z5_OFL6cUAkFm4_UESeG9EH.FizMvD. 2023-10-21T12:12:42+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml Ymn3Kw37B7pg36MSo.5xaPPdYRBG8xwY 2023-11-17T19:41:52+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml JLa1mLiDfjyk1ADyOghbZoJDapdCNJ1F 2023-10-21T12:57:40+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml BVuGXSU33vpy.pd6eL1eshm2sPWkApkO 2023-10-21T12:12:42+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml C757vsE5O.iZvLKx0LsTe_TB70H9IxCw 2023-11-17T19:41:52+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml xFKP_TW2v7BO0VHu0XMxpUYulPRidDzD 2023-10-21T12:57:40+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml L8Qk1TrdK98ltG_h44nFqb46rwBPdlQX 2023-10-21T12:12:42+00:00 -aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml _FVGhTNlDkI0lLSdNJ6HJNyGKsrzeYL3 2023-11-17T19:41:52+00:00 -aws-account-automation/AccessAnalyzerAlert-Template.yaml dp0aZNLGlC_3XWnIYd17US73Axbxxw5E 2023-11-17T19:41:52+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml 8jk5L9Kayo3iImBCSvh8DB49xLyC_Rlr 2023-11-17T19:41:53+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml uh6HsSuLby_2TQx3hQaHnzkiHqnClO6k 2023-10-21T12:57:40+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml SnU24UFjSvDM2HfSFnSJK9uWC5KiS12L 2023-10-21T12:12:42+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml swWQbW0hehc1a_eddTz7cVp9bJEtQlkN 2023-11-17T19:41:53+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml AVUh.25KDueWLrWdJPpj3TDul_6AeCoS 2023-10-21T12:57:40+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml crf6ggwgv8lyw4rEWPr.wV2dos5.D6rc 2023-10-21T12:12:42+00:00 -aws-account-automation/AuditRole-Template.yaml mCQCrfuKfQBbIPb5XSZokXHEoYzhy8cv 2023-11-17T19:41:53+00:00 -aws-account-automation/AuditRole-Template.yaml Tg1YMkpzX5V4JhrZNT.yUBn2TbwpD1lt 2023-10-21T12:57:40+00:00 -aws-account-automation/AuditRole-Template.yaml XUTYiLcR3d1RKrcOZv03PGYlfRgfgFm1 2023-10-21T12:12:42+00:00 -aws-account-automation/BillingBucket-Template.yaml EX2._AbFoOH1d0FN9g7bveMkOPmcdsUA 2023-11-17T19:41:53+00:00 -aws-account-automation/BillingBucket-Template.yaml NkEwKRo8TGEOCs3rBx8Km8deR471g0mY 2023-10-21T12:57:40+00:00 -aws-account-automation/BillingBucket-Template.yaml p5EgbrwcTPi5k2E8u.YHZVA.pNmAocSi 2023-10-21T12:12:42+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml diiiu0HEGAZnufJgVZVXgHYVMGmkhFEI 2023-11-17T19:41:53+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml 1albkdj_nXwLAQ0cMtRP6KgMbCaMRFGW 2023-10-21T12:57:40+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml zgYixS400u_0svT75Sa4lXYo6BzF.acH 2023-10-21T12:12:42+00:00 -aws-account-automation/BillingMetrics-Template.yaml da1j8QCjfTy5GNc_z1BMffRaruWaJtJU 2023-11-17T19:41:53+00:00 -aws-account-automation/BillingMetrics-Template.yaml _oixPN4kzrnIwaoOByFKaIFsxAUiN8pz 2023-10-21T12:57:40+00:00 -aws-account-automation/BillingMetrics-Template.yaml sBcdXJH0QY1nRTE2PCAD9nW_9IgHUcXt 2023-10-21T12:12:42+00:00 -aws-account-automation/CloudTrail-Template.yaml UU68DkC0R0xZay175PoCLK8ykbODXR62 2023-11-17T19:41:53+00:00 -aws-account-automation/CloudTrail-Template.yaml eqmHgVTNgVwmp28U5rxQZHoYp2uVVbFP 2023-10-21T12:57:40+00:00 -aws-account-automation/CloudTrail-Template.yaml 1_ezSTY.b3bsHkxri04cmP_JzNhhmzPh 2023-10-21T12:12:42+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml Rk9t3ET3XKfErFyf1B0eWCPe3t9eZRyg 2023-11-17T19:41:53+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml vqPNSZ5zT5oEvrTfxQMIffi6QtJ7pjLX 2023-10-21T12:57:41+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml Q_FeQ3zRMLNeOBPbkKuU2NcoxwNV7Ckc 2023-10-21T12:12:42+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 3URuF_gLuWr.uKDRvx1Ber1gjTRdHpix 2023-11-17T19:41:53+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml ywHSBiGGWUDI_3oKgNsYqKSD0f.ADNxk 2023-10-21T12:57:41+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml CeGyqmKa0ndwzeJDpMrs3dkSldp6Dure 2023-10-21T12:12:42+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml l90FYqxKw7IU_Tmve48xenhVMsTbWXR_ 2023-11-17T19:41:53+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml 4xJGmGR5h.cR5NtPogYbn_6PZPWlKQMY 2023-10-21T12:57:41+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml JVLTtr7YGDBexRzmIsGsIaTs59i5gd2H 2023-10-21T12:12:42+00:00 -aws-account-automation/EBSAutomatedTagging.yaml imf_SC2NeEwe4fTBjqqZJQJaZfq.0GR5 2023-11-17T19:41:53+00:00 -aws-account-automation/EBSAutomatedTagging.yaml 3NkvSmImrP5BtUWsB9.IsE9a000lYdqX 2023-10-21T12:57:41+00:00 -aws-account-automation/EBSAutomatedTagging.yaml mJIozwX.5Ou4EEXwvfhpkM.8FLnuVkda 2023-10-21T12:12:42+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml 48L9Ai2Y3IDNaVlRKUkvIyWJn.QY1U4V 2023-11-17T19:41:53+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml 6fxllP7kcXQPcYRTWwS7fMqQkx1Rat6Q 2023-10-21T12:57:40+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml HY9i9Uf5kF_78IDvdycezY7usCYyBnzi 2023-10-21T12:12:42+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml xMCdGJhs4oHo838DecmEsbi.Zei4B1ND 2023-11-17T19:41:53+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml GFmo9I6Y9.cO3jFiDFxkkQLXqj6NiPB7 2023-10-21T12:57:41+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml CbSr5rYDuGkvE7QrtbwkTLp8uNSUR.Bb 2023-10-21T12:12:42+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml qGzL5.7ZwEOLFpv6qKf0SvxIaCEUgfM3 2023-11-17T19:41:53+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml 25OJggcllwu.s5yZrGq1tNLQxMihp.Yf 2023-10-21T12:57:41+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml slp5U00Le50hsz2ftow_EnaMjN8JTdiZ 2023-10-21T12:12:42+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml hWoD_1VSlzEQX6S435f7cUq8J9FCyKy8 2023-11-17T19:41:53+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml IHX6mdq2kYJZoCctsSrtXS1x5Y0eXTt2 2023-10-21T12:57:41+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml gecNYha2Q2RWIL3etFPnvygxHRSXYalf 2023-10-21T12:12:42+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml dXTs7sFnopZ9ak6hNFr46eoz7T8k5bUS 2023-11-17T19:41:53+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml _V6yOj9pEZ7H.EmedzHCnAEtZSJVENzJ 2023-10-21T12:57:41+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml 8YLWiuFbcKZbxD2IFu9bXvROAL_9y9F. 2023-10-21T12:12:42+00:00 -aws-account-automation/ResponderRole-Template.yaml Dgu3EigE3wX0ZVVzHCgVWhjkSKHkGc8J 2023-11-17T19:41:53+00:00 -aws-account-automation/ResponderRole-Template.yaml Y0Fwwrs1Fq4qx.OtpcDRjduD7nmTwICn 2023-10-21T12:57:41+00:00 -aws-account-automation/ResponderRole-Template.yaml nWZPGFGySNYR0NzaEjEUsDBcQeAHDc7n 2023-10-21T12:12:42+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml NZW.bTKajPHpuiBKyIyTwEcLl6d02y.O 2023-11-17T19:41:53+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml 5qKtrdxYa4qJzMRAHcsWrvQr1IuqHSN9 2023-10-21T12:57:41+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml 8JUyB7wcPmZLlUjSZdUkmaoD6dFB4grI 2023-10-21T12:12:42+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml 4GLCJ4TkqzFFMLzARCFGQs_TcLiHC2gX 2023-11-17T19:41:53+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml DX5pxRoB5f9oFKV_Yzby93tIiyrSZBEw 2023-10-21T12:57:41+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml 8pBQPIvW3._5WzBoLZneOcLUa4Kl5SIf 2023-10-21T12:12:42+00:00 -aws-account-automation/SecurityRole-StackSetTemplate.yaml DOoYJ5PTtSOdG0oGmhPLTMPQkJqkLKwM 2023-11-17T19:41:53+00:00 -aws-account-automation/SecurityRole-StackSetTemplate.yaml PlUwBK6jnCLMrUbG8kCJ9q3Q27O0MbYf 2023-10-21T12:57:41+00:00 -aws-account-automation/SecurityRole-StackSetTemplate.yaml 3hys3gsGfsntIBsyxG8NxVbO0Nt1Tzh9 2023-10-21T12:12:42+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml goA5VU4f9Mfsnv_7oUyfeAqskaSf0d47 2023-11-17T19:41:53+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml bNUUrQ7eMaE8rV4m8m971vlc3OYccVTw 2023-10-21T12:57:41+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml ZK4NagHmL07vkRI.5lR1DPndgbNFqlDH 2023-10-21T12:12:42+00:00 -aws-account-automation/requireMFA-Template.yaml DcOoI9ly8ibScqN6YSdYILA6J.QuRIu_ 2023-11-17T19:41:53+00:00 -aws-account-automation/requireMFA-Template.yaml aQFB27QXUwny3l98OT37PIwm5AJo4MBD 2023-10-21T12:57:41+00:00 -aws-account-automation/requireMFA-Template.yaml JFjRxUsuHLeCUaVN_RCRY1s5MAUBlL.q 2023-10-21T12:12:42+00:00 diff --git a/Versions.txt b/Versions.txt deleted file mode 100644 index b1d58ec..0000000 --- a/Versions.txt +++ /dev/null @@ -1,1246 +0,0 @@ -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml 1phR3TbTwT_rkzmttzjnrdv7I3woLQwe 2023-11-17T19:41:52+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml dMOsJRF0OJ2UHwXb4lDnoVKcbVq_yXcS 2023-10-21T12:57:40+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml ki8Vh0IRZQ0_QmVJZhqg_A5Dq8gfKk0L 2023-10-21T12:12:42+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml GnHtN4EhpxverB755CL3cXh2VGrBLuwj 2023-10-02T12:30:54+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml AWpLHQ9_JisReooXwTHgkHJ.FkVhQXNG 2023-09-13T21:28:08+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml hkiegQ1bzudlu5AWPJIrUsdUlzBJ5LcH 2023-08-08T13:18:52+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml zJ7zRoTkHV8MD_sVYk2xd2VABdfEvgX9 2023-08-05T14:00:50+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml bYGiV26sIGaOcXsl6JuPsvWswczaeJZC 2023-08-05T13:43:22+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml Lrv.d_gQ6iG9cALxYhPBUuch82rhs6v1 2023-08-05T13:36:36+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml a2k_iK2TDV0jKS9rbObEs2mSbNnpxiRv 2023-08-05T13:32:58+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml tJM.8Q2uNUZRmVIGd35OLRg0S0Qapa8G 2023-08-05T13:29:16+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml D6XY.TDniYqEvYuxKLpacAuBaU5DGkWX 2023-08-05T12:45:23+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml FgPEXb5_HyUuMYThmOzIXycos4S5shfM 2023-07-06T20:31:08+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml 1t9VBWlpT_r2oriYDrKyNMyP4PJJJkH. 2023-05-16T15:11:43+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml nmXEnzWMV2I4Gq9GF2Mmz77u6FFeb05s 2023-05-16T15:05:11+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml lB.TRPRxOm9xx7uKH9ThaDgO5g0JRqxh 2023-05-03T13:32:02+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml ZIlt6UYg2Fju6.lAUy14pV1odJ.6p.6g 2023-04-28T19:08:48+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml y77FQGDOpcrUYSIB.vs34GDRJMO69f.L 2022-10-18T14:14:44+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml jDNASiKPRfmy9PHKGKlOVtn2FnaMDCUC 2022-10-18T13:43:06+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml leA3OqLV18EW7fjeWzqbNqRnQMTQMcXG 2022-10-18T13:25:31+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml SunN4ZtGIBub7enYekmxzQD4bdVCphlr 2022-09-11T06:33:20+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml kI8pULqCbaDlPO4U3.0azFOreHXws1rQ 2022-07-16T14:33:43+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml v5qeIlBUF5nrJf..hmMYxWMVSNGnP2EV 2022-03-23T11:37:45+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml kFB0i5pcglRwYuwC1yBApHdpXCKLCNhM 2022-03-16T12:00:04+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml c_mZ3cw4D7UG98e9UwTSrKCYEDy7_6jf 2022-02-20T15:18:21+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml _V5sdUSRbVm7TitkimWqsSl7pehoyDcc 2022-02-15T14:07:48+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml 8QWyk4dwu0t2xevmEjTYnnk.ETdIn4sk 2022-02-15T13:23:29+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml bcooy7.BsK2W4M4GAiF5VUvuxct1FeEs 2022-01-15T20:58:19+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml 0NKZjrk0EIzouROxN_haCMwvWZaoUP2w 2022-01-08T12:27:14+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml niuZO6RmaA2_fyFkYEwU0BXYofoFk6MN 2021-11-20T11:21:56+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml MmITzlvTsAr5Bc_PjMhQK7LxbkyNBEuA 2021-08-04T09:52:56+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml JqD65VhR7NeuUvVCwN1RLZ_aPA07d831 2021-08-03T22:51:09+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml 938c6G2XFW4AaPmRCLwrOoNXmOJjIG9d 2021-07-31T22:23:54+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml OpywSbnGfQ8il1YDBlQrmE6HkvV45iTp 2021-07-31T21:00:55+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml vRz7Cu.mutja.8cK8yiI6k98Ora5fc7V 2021-07-31T19:57:05+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml D6VwCMQBGoaLDJVLw650OxluyZxktrWF 2021-07-31T19:34:11+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml OPOYltybUHDI2gGm3iUilXjYEs3ysZG6 2021-07-29T23:24:15+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml vMmqbk6GoAuPP1MznvMxG4NWWNgOeFqg 2021-07-25T17:26:52+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml seXArwUre5VYHW2tRa4L9IVVThqGFwZ9 2021-07-25T17:20:27+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml V0k1IUtzuvr01MRydYw24AVfCHodRWVP 2021-07-25T17:18:38+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml iUtA4t.PKXSsfw0hEDmb7TMV.bBD8Jcp 2021-07-25T16:36:08+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml DBjo.s2H99ao3Uu3miL6XYq96m5DPUFe 2021-07-25T16:23:49+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml 0KJyp6p6pLUa6395cjB67hRFaCdC1St4 2021-07-25T16:21:39+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml cjL7jXMB_9GcGZ9MvHW6JMbOpFMeA_xg 2021-07-25T16:19:33+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml 0BEwnx7U603qCu4RgbeV4ECPNzBj_77B 2021-07-25T16:07:13+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml BtVrW1rwhRrTstgGAomsx1Kg4Ncj7YJk 2021-07-25T15:30:45+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml U4oVyf4L0lQ3IfPZ.nnnyNaSwK12QXCO 2021-07-25T15:27:39+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml XiZFqypzj7t_ZfnvEpoIWGVbtaOzfG0p 2021-07-25T14:34:52+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml bHPxBOpJ4OCBDe3TaGy7gCuzU2j0OLEm 2021-07-07T10:48:52+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml vWpaDztFDNuarppKInwPUeshDodMNcWb 2021-07-05T17:05:24+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml LfPGXke4iBWCMqEOO6IdTDei5OGQNDJt 2021-07-05T16:36:35+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml 0zD_Wh_vkRAYsnFq3sshualL3otdLLhX 2021-04-10T18:14:19+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml aA.VP1cZumcoLMpWysiLnSJUum4g7ry4 2021-01-20T17:39:46+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml 30B.lLfnjEwJYdTMAgQvlNAsTTRxqqYv 2020-12-31T12:38:56+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml nljpwf2NH2dnYiqLHCnkafT9bNnBhlqd 2020-12-20T13:13:33+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml ZmuLkGtQX_BNNcqFcp3L5f1F_x8CwHU9 2020-12-20T13:12:06+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml 2aO08BvuvpowHKJCVxxwiGd1.VDxnHSp 2020-12-20T13:08:56+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml Yt9AEZWOh1BMJCdM1bFTcf3H8NY6M8Ff 2020-12-20T12:50:35+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml rCtZ4UEPv3ZF8sANIfMIhR1ZMX125Xnm 2020-11-25T18:20:49+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml msMZdAG7ys6u5ZnjWOdAz61ZfxbB0Y_C 2020-10-23T14:00:32+00:00 -aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml 9GFusAVNkcmFCIsa07DlJqxo9SDcI5kG 2020-10-23T13:48:35+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml CDj0MPTVbKdaQbUudU92xcQmkIaG4dDj 2023-10-02T12:30:54+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml RpauVNGaPbXn97xjutBaUj4.Qc3I4iod 2023-09-13T21:28:08+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml EPbfdPkHP4UKhJ9IrF5YqAGEMKQ8FXRU 2023-08-08T13:18:52+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml vVRV33cXmAEPLG0tjiqwm3BBOdhHbuo4 2023-08-05T14:00:50+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml JJYQCrWOzvzFOu66e2lOtuFMX1uM71na 2023-08-05T13:43:22+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml bpI486_jTnJGloQOS.3h2aQHtK5Htn0x 2023-08-05T13:36:36+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml YFknnRpKeiDjm46fKUUoD_AnMuCPWzX_ 2023-08-05T13:32:58+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml EPh4tZPbAryr7EbbKdLx0YFEE4ZKxC8T 2023-08-05T13:29:16+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml CiVLlOVEFYesaLzbtGL22seLravyZkBb 2023-08-05T12:45:23+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml S07S9z4cEJDdD0VY4Gp1NS.Ij8eqhRjn 2023-07-06T20:31:09+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml 23JQZnrsFM7FYLcszcweidiE7uJ6uchh 2023-05-16T15:11:43+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml 3ygE0jablv51Qw6is5RZT.mjyDbQc8Om 2023-05-16T15:05:11+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml ruVCF_8sWfAzXRcyukTjyW0veQuWZm.8 2023-05-03T13:32:02+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml gfXxJj3oM.yCUxXmUSRrG6ybiJETmbyF 2023-04-28T19:08:48+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml 5mssUJVBDCb_UssI9uypk5NVnHdNeVzm 2022-10-18T14:14:44+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml pbej1uMMGhzEA_V5nZiXr_TV9whuw6Q9 2022-10-18T13:43:05+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml Cf_jrmJcw7DKYsxl29fOnlykpzS3.eUR 2022-10-18T13:25:31+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml k8f3QkHSVzSGOMH8Q6Txf3O3C_aLJ7mW 2022-09-11T06:33:20+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml 5VaexKyuwWWL5343BLdmgfuwUAFM.qzd 2022-07-16T14:33:43+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml IoN6OgC61XwCzXXcyLkgpXqI1KizMSRM 2022-03-23T11:37:45+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml Cg40EvfzlNv6bW5oOMWbn.SPLy9o7i1i 2022-03-16T12:00:04+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml pGLNCbjgH3p0koAvKi5MbZG2qEFmFP2p 2022-02-20T15:18:21+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml nC5EPzkD18VnCs0No9O5_3NWS2x98LZj 2022-02-15T14:07:49+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml PdnphQ_7GfNoxtdaV75X7BwIG86ldR4U 2022-02-15T13:23:29+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml KP6jSGQlFtTEFuLcPbjPEDpbHD5sWgIo 2022-01-15T20:58:19+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml zuvoH3I8PnlfObW9NQfRc_G_i4StD3.. 2022-01-08T12:27:15+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml G.IXD12hRCENdszuo8eL9Y5IPiuvnMz5 2021-11-20T11:21:56+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml 9GFA5eCPeQrm4LNiCfP_ZOExWNNwxT6Q 2021-08-04T09:52:56+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml HK0gcYrFidOHsf8kFV7mAi3n1zqDWypR 2021-08-03T22:51:09+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml GL_52QB2yrn8AYIINdF24Y8Mw8IImjye 2021-07-31T22:23:55+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml k3qhZbZ_A32tmD6IIn4yhrv__Zg_7_0g 2021-07-31T21:00:55+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml 1FvjEmSUVtx7O9j_Q82KbazD5dAn4K9E 2021-07-31T19:57:05+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml I.t5u4Nqmu4_5uDk6I0HzrH.OA1EunwB 2021-07-31T19:34:11+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml OH297jCdelkO.lji0BQuEwj3NhgRB.YS 2021-07-29T23:24:15+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml KCwZg.A39S4ht07BPT_vu3ewsulFFt6x 2021-07-25T17:26:52+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml TXyoBArk0EJ_V96xaZOi8CGdmt4fRk5z 2021-07-25T17:20:26+00:00 -aws-account-automation/AWSConfigAggregator-Template.yaml rjMiSnCwfJTAsXSJFPdizBIX3EwuDm4T 2021-07-25T17:18:39+00:00 -aws-account-automation/AWSConfigBucket-Template.yaml Ka1wMNWgrwzDeH.TEV8ArZJi0ycL.Ec. 2023-11-17T19:41:52+00:00 -aws-account-automation/AWSConfigBucket-Template.yaml nERcEr6eZQOuxlpAX.1WsZ8o3RyuH8GG 2023-10-21T12:57:40+00:00 -aws-account-automation/AWSConfigBucket-Template.yaml 2Z5_OFL6cUAkFm4_UESeG9EH.FizMvD. 2023-10-21T12:12:42+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml Ymn3Kw37B7pg36MSo.5xaPPdYRBG8xwY 2023-11-17T19:41:52+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml JLa1mLiDfjyk1ADyOghbZoJDapdCNJ1F 2023-10-21T12:57:40+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml BVuGXSU33vpy.pd6eL1eshm2sPWkApkO 2023-10-21T12:12:42+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml W9SpV2.oNLNm22wiBXo0Y3YKjp9xksDD 2023-10-02T12:30:54+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml Ntq3wdhXHmEbG3ChccVUjH7Mz8GFrAbu 2023-09-13T21:28:08+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml 2c7BgHIysFpGCJCM3daakahQ2zBSFkQ1 2023-08-08T13:18:52+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml th3V4vf0flxv9ars3ny9K4hFn4T9vQh3 2023-08-05T14:00:50+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml R0gGXT4ibqvT9_TcOl9tDwguPhgz92SB 2023-08-05T13:43:22+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml 6TwV0rzKlhqYwnIm7zENMcoMD_MFHIHf 2023-08-05T13:36:36+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml glVnUvClqBFfzrj_u7b6N_YSNI6vD.sE 2023-08-05T13:32:58+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml NWbFGI.9fqPxU4JhCJZpHqIbWJv8wDe2 2023-08-05T13:29:16+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml 694hsVquPIf7SlWlxTJucobCrTArHVfS 2023-08-05T12:45:23+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml 7.0Acsxyhe63PK9AuEUq6fh31xKLrXxd 2023-07-06T20:31:09+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml mSmruGTqy5oJm_6FjnqKntOJZsfYVHBV 2023-05-16T15:11:43+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml ff_G33hXqHRfriVrmzV.irVS9LFLYG9u 2023-05-16T15:05:11+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml o2uZk5uDmEMI8Nh6iHJnIeZ33PmZOYgk 2023-05-03T13:32:02+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml GkxPa_6_rkxuCYX9om0gBIrzXFh1N24e 2023-04-28T19:08:48+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml XRBlvGvv2tQwmAl3agROO4gf49GPM7uc 2022-10-18T14:14:44+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml 2e28iv4SeqJdkqPqlTTZhUR5FTpP9SLC 2022-10-18T13:43:06+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml kAMl8rYlhTLmR4Il7CmVJK97HAs4A5GZ 2022-10-18T13:25:31+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml gQ1r.h5WgBcK7pJNGCM3DCSRzMNlQAyr 2022-09-11T06:33:20+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml q8_PdnZXkEu12v_Mi_juCjyQhDyEeHUa 2022-07-16T14:33:43+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml 0LiyuqqPhgrMJ1ZZXGGsvXHjwW.2cAt5 2022-03-23T11:37:45+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml pC.m8vY.JDky_BGnJNZCYb.IFtAOz7xu 2022-03-16T12:00:04+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml S3apw3xDeh43eO_05EKn1xWExW0VabBC 2022-02-20T15:18:21+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml E.2.N0QeOxRE1OiMMGxq3PJtQRbaSZb9 2022-02-15T14:07:49+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml 4hHAMp.oocBddj_A1cBy3.k4nNeX6V1K 2022-02-15T13:23:29+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml G6uYme.Gej8eES9mBvAQD0LHt5K6po1n 2022-01-15T20:58:19+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml f_xkpV5bG5Hc5OM6HVRfZNPGbWCDFzsu 2022-01-08T12:27:15+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml 45Y830diikBMOKbJKmHuvbJCC91MF44H 2021-11-20T11:21:56+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml x6incIJyJVR65J57.lQ698ZwcLLFHdpg 2021-08-04T09:52:56+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml LrLFSNMKXSdEjNYgkDfhc7ePo9AydXhp 2021-08-03T22:51:09+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml YxOhH1D9mzH0r0lfdwyJJxkZ5PBlr0Od 2021-07-31T22:23:54+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml _Wu18encaDKdGMwHFdzn.MJXrVMTk1qH 2021-07-31T21:00:55+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml LNPFbr55B5mc3tIQGYxY6tdgW5AW4yWm 2021-07-31T19:57:05+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml XX3NMiB68NRLgGdiRJUtpgf9L5hLkXDV 2021-07-31T19:34:11+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml pR9Da0ylb8Yn6T_IRuVHM_7m8u.jY6LQ 2021-07-29T23:24:15+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml n3QEIOncgobNfIMB9JuhD.XXn7ZCFSzP 2021-07-25T17:26:52+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml 8ffdI0n8h7_cSFTr9eiL1gp9zPBe17V6 2021-07-25T17:20:27+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml ti9BEWXDOP.aqOlGvzYY4yziaYyPMmPL 2021-07-25T17:18:39+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml rBQj7zGh8VO7FgiJQCMK1XVzn7DVdeLP 2021-07-25T16:36:08+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml UQp3nrzue1AU7fd_k72Wotp6bdL8crCw 2021-07-25T16:23:49+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml oyEDg7JegJ3CAPXNcEtkXywhgQS9P6Za 2021-07-25T16:21:39+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml xOboWwLNB8miFxiNzuYacUmQTT4IoWPh 2021-07-25T16:19:33+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml 4MQ0wqoqWv1p10p46OkKVnDMRhGOtu8I 2021-07-25T16:07:14+00:00 -aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml BEp5Etll0Vz4oHOhjeEx6iwd1miUnymH 2021-07-25T15:30:45+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml C757vsE5O.iZvLKx0LsTe_TB70H9IxCw 2023-11-17T19:41:52+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml xFKP_TW2v7BO0VHu0XMxpUYulPRidDzD 2023-10-21T12:57:40+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml L8Qk1TrdK98ltG_h44nFqb46rwBPdlQX 2023-10-21T12:12:42+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml 3qv797t2D3AE9sVrm80Q6GPf7tTrmZXw 2023-10-02T12:30:54+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml I0vTaTZykeACxPD3mIxb_caEy9pInJw6 2023-09-13T21:28:08+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml DD62JL.GeD6U6KpUm2R4WS9e2QA8mlIk 2023-08-08T13:18:52+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml 6r0kMoK_p4YVFmZ3HFXNW71f4eJBu8LJ 2023-08-05T14:00:50+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml Jjg86r7LRMWcizCLkmLbvWdIXAC2Cvep 2023-08-05T13:43:22+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml ..ZB5FBaWN0gHnMYHV7dnea63hFR9OJx 2023-08-05T13:36:36+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml ODoG4xvPm9vqTzbwe_4Jd4rjw_g6Zd0Z 2023-08-05T13:32:58+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml .8DdVqpG9gQpjWXmfOx_d6zhU7FHJQOp 2023-08-05T13:29:16+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml hO07wNUWoK1aUUZJs7F4DVkLyjFKJ50V 2023-08-05T12:45:23+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml hf.LK02psoi33i3O17NGTNtL6KtXMblb 2023-07-06T20:31:09+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml lxURUrrkBZx5JNyR29HoeQl0czV8FXpa 2023-05-16T15:11:43+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml c7zXhyO37WqBc5LANluAWNILI00yufHE 2023-05-16T15:05:11+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml cBfm6Tl23E50J1n4ZHqdiHSK7EFkxZsc 2023-05-03T13:32:02+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml uqIhU8VqfqX9k3q5dheRKB0oXEZjKxGM 2023-04-28T19:08:48+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml PjsyQCmsDBxQCO9Hkc.ERUnOnI18Bp5B 2022-10-18T14:14:44+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml 4z3uAzz8UUeYN3o1iJti13FkLo5KKLYV 2022-10-18T13:43:06+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml wERPSuw82xvyOlBRbGGwNhUWMnHbkdAf 2022-10-18T13:25:31+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml o1_5TbV47qTpLO1tb5LVevRgx5BpgAsb 2022-09-11T06:33:20+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml oMCw5GN9D.jiH1rFDE4RKGFWVKf8KY7l 2022-07-16T14:33:43+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml csn5dEm9Hl3xZsYXcnOW9VrTaJ.tnlqJ 2022-03-23T11:37:45+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml lGHR5cAYMjRINgAXOl74IqZ6EYQxurc3 2022-03-16T12:00:04+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml MiT7NCBjD5adr3RE2uBwusUMEqfQMFs0 2022-02-20T15:18:21+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml MPVsdg2UosrVnXm1AJg_FRtKbhYbe6PM 2022-02-15T14:07:49+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml 1lL4rplrneNrwyr95nNMOarmxk0LsTGp 2022-02-15T13:23:29+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml OVbdo2xfCry0zO29125Jy2lYGcOBoeV_ 2022-01-15T20:58:19+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml 3j2VmGHJ8nt18cqW0fNZj0uHFjFBuYDf 2022-01-08T12:27:15+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml UiqS6I3CyglG6JxDfr0qS6GhghmS_8VZ 2021-11-20T11:21:56+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml gCyoKAoyoxtEAq9eif0N7X_DGRZjzayx 2021-08-04T09:52:55+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml HuxUfzjV.Hn845JB9fHsNdOTjBssnUtm 2021-08-03T22:51:09+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml AICecC2Wp99oEzaOoBSHkew._zLjqSDy 2021-07-31T22:23:55+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml xSVk3SAKoDd8VodE6BIiTh1A6RScWbno 2021-07-31T21:00:55+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml KfkZW7hAQXvpcW3sG8aS72OeMWM1Rrj7 2021-07-31T19:57:05+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml pXU0D3Py4.5Ku00lAKRcL_NvjpDYJAsH 2021-07-31T19:34:11+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml nc8xCvuapzJD74wAWkIbO.TTaA0DUaNK 2021-07-29T23:24:15+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml 0Jjz2GItEGtFxtgUMB_AveyPNVPthmAP 2021-07-25T17:26:52+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml MFX9lK5rZatY5iHuh4WHrertjD8VP.0J 2021-07-25T17:20:27+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml i9o4eh0.PlVEiqJMOXBZF_ncR5nkisBp 2021-07-25T17:18:39+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml y4ARvDTBhcRpvIS.Xue0p6y5T0HwFVfw 2021-07-25T16:36:08+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml kD1ntIwYAHbIXqZon8YS_R5ztycwMHsg 2021-07-25T16:23:49+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml c1GT78fSSaoOubXnqJ6KrYwnrC8VO0GV 2021-07-25T16:21:39+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml cp3UEIvUu.ODXKSBFa5j8BnZUC9J0pPd 2021-07-25T16:19:33+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml kZv557txGdFKLcyVoYbH95JRQZwXjDVy 2021-07-25T16:07:14+00:00 -aws-account-automation/AWSConfigRecorder-Template.yaml j4EAILg2_dgkxG3QtJx4OiEg0j2JQF3F 2021-07-25T15:30:45+00:00 -aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml _FVGhTNlDkI0lLSdNJ6HJNyGKsrzeYL3 2023-11-17T19:41:52+00:00 -aws-account-automation/AccessAnalyzerAlert-Template.yaml dp0aZNLGlC_3XWnIYd17US73Axbxxw5E 2023-11-17T19:41:52+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml 8jk5L9Kayo3iImBCSvh8DB49xLyC_Rlr 2023-11-17T19:41:53+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml uh6HsSuLby_2TQx3hQaHnzkiHqnClO6k 2023-10-21T12:57:40+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml SnU24UFjSvDM2HfSFnSJK9uWC5KiS12L 2023-10-21T12:12:42+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml _TwCiUdqCReANUqDU.Z3KT_V.RXn6o1h 2023-10-02T12:30:54+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml o.4gbzL4MIj_35k6yMA0v9QLdFKvpnlI 2023-09-13T21:28:08+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml v3b13zsZUqiw45KiG3MmVRBur_sWNbeT 2023-08-08T13:18:52+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml N2DG90gzl4_LGCEJR9nq2XpSMHpqA6AI 2023-08-05T14:00:50+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml 6AfJdH_sP_I5t4Xjaf9mAotxmflHFIQE 2023-08-05T13:43:22+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml PwbDYzP73DcGJWv1zPTQxYBW.kHYX8L7 2023-08-05T13:36:36+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml FRw4XHn2b38i0ieqbcdYHUXHSWUuRLOo 2023-08-05T13:32:58+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml N5wbbd_0uN1zmqfY7rJ5HZbhGFyF._tL 2023-08-05T13:29:16+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml rhGyQmwDcw6BzVxKrIT9wSU43RQk2TeE 2023-08-05T12:45:23+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml X_.S8V_W6oDrSKoVRwc_VZNzF6l40ssu 2023-07-06T20:31:09+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml PXCwidE_yOEOjcYmnlu2qmZRLERVwa__ 2023-05-16T15:11:44+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml lkTr3yk7SReRa0D_rkVHYiaitKu8fC06 2023-05-16T15:05:11+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml 4pXVqzRhDAFwW3bK4LzW4GJJrLWHNbcN 2023-05-03T13:32:02+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml yH46cZ5iebY6ihUcFPPp_w9PunA5aqYt 2023-04-28T19:08:48+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml WEyN.tUJ7D8WtW7a3alhEN7M.AkIeafK 2022-10-18T14:14:44+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml IpOhd0FcgDJKMnjWZTvDtAVpbyAE2t86 2022-10-18T13:43:06+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml NbIbi.bvgtOrgOlhpDYcPOjxY1i_aoQ4 2022-10-18T13:25:31+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml Nj1LwoobDZz5KOpaM7foyiDCQLAMaOX4 2022-09-11T06:33:20+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml ynOOG5rHxt9Opsu_JnBZ00avfcd62r1c 2022-07-16T14:33:43+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml NDfjjCLg7EgTRuA9TcTFNU1JoFfFFXtI 2022-03-23T11:37:45+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml gsFBanB8yGDaqeX.f_.3pDFLszdbQUn1 2022-03-16T12:00:04+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml TuNG7LY2ArXQgdXQDkJe1Qr4JuqupPnR 2022-02-20T15:18:21+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml TjIjuzLwa2L8mELani22zw.cW9NsJ.2O 2022-02-15T14:07:49+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml 8sJUY2OhtEWdvZR._vya.2aBhM7dzK.c 2022-02-15T13:23:29+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml qdzWdrNNMMuPbDjbbbJ.Ig1Znj7QRVGt 2022-01-15T20:58:19+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml G7vz0Xs6J9DtWiRzPvEzB9X2JOQpc4SU 2022-01-08T12:27:15+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml o1K0ha6GIvJF6HW_KgvCJqKuPfSTW6f9 2021-11-20T11:21:56+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml gXX3WSz2dlMAK0BVsaZnAriNxlEXyGg2 2021-08-04T09:52:56+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml wZK_sBgoxRoiwgQELB72ycsH4MgKy.nL 2021-08-03T22:51:09+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml 5oiNRt_D3kU5T05mGivtzPmv5KqkdFnl 2021-07-31T22:23:55+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml HVMiB8SAklabX8mNYjjJMmdlkjg6FrnA 2021-07-31T21:00:55+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml 1EvCJSh8P.Fdg5E2GDX31sdxqZ1MDr5Z 2021-07-31T19:57:05+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml XYcIyvgwbZXEjKWgOK5BJK3pl99Qomw0 2021-07-31T19:34:11+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml w18uyNzyq_wO6dGGPZbShAyChvgFkSKd 2021-07-29T23:24:15+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml ._Kqi0_WrsPwcy3Fjx0WueDyP.iczIRH 2021-07-25T17:26:52+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml Dga7QluPDeOdSQ6Vz8rMBo6u4YuaS1FN 2021-07-25T17:20:27+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml XjpIvhi.MWezi3dfUZROsLFmv.euSKSv 2021-07-25T17:18:39+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml 3D9K8qHhdhERKWTaugMGIA6lIXBZb1Eo 2021-07-25T16:36:08+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml _KO9xwB2VaM_1gLZ4urds83jM6OU_KYz 2021-07-25T16:23:49+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml VoOljvBuEVs6frZ0reJw0.1BOZSyn_UA 2021-07-25T16:21:39+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml BFMtjvoEnZ60lMOLsl3E2d7UrHJF2Eon 2021-07-25T16:19:33+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml JR9km7c9bYZ4b.98vJW6Y3vKzrGjh2JR 2021-07-25T16:07:14+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml xPJvz5Rgyo_SsgIohCGvIDNilZ1041rd 2021-07-25T15:30:45+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml Zc.KjKBTiam09U4Kj9siX7adendHZJwL 2021-07-25T15:27:39+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml QuL1NmrwlfPaFqp_pYHsntShs2zE_pkn 2021-07-25T14:34:52+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml rGMtbgpYqT.hn1.ICyMsf7SPq8Tfbppx 2021-07-07T10:48:52+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml XdVNlvEVCM9RJRwJV5RhC7.xzua_IMIT 2021-07-05T17:05:25+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml m9lAAI7eeKMTVyYtD0ZNvN7s6YUh9VVh 2021-07-05T16:36:35+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml E3JgfGtw4r154pmf_CCp593qU_MYQ7hy 2021-04-10T18:14:19+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml vuQ7cRGEDoBwnRJSknuG7BgRitZFG5Lt 2021-01-20T17:39:46+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml R3m1jUG1vDLVUm7amIGOYxpmmRvjgmQq 2020-12-31T12:38:56+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml nCpuxLr6dQRgMfVQS6_2V6LlJSz4haAN 2020-12-20T13:13:34+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml g.DF8.a8XXjnjI7u21P5kd9d5g.iB4FI 2020-12-20T13:12:06+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml aP4yjQhSL4Fg2XPkeWTjOK2JTtk.mkoh 2020-12-20T13:08:56+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml BefimgYY1VHrtjsqzGV9PMWwx3SiEHlY 2020-12-20T12:50:35+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml Y0k8ZHWkI8R0ZwZN03rPBjQLAt_mR63H 2020-11-25T18:20:49+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml LjYjCVp4WORqC6B52bPeUfWSLG49PIAk 2020-10-23T14:00:32+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml 13B4QZXonQ47aafmMUKeZi4.AWsr6OoZ 2020-10-23T13:48:36+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml yQ1rDt96sm8Emxgi6P9K45owFh.8Em0Q 2020-10-23T00:17:24+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml eFfH25hRI.2BCTdBPpfbjTGJagDnRdRA 2020-10-22T23:26:35+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml Oc7ugfjx15XGHMn8meN0uRb_q.sE.ekO 2020-05-02T18:35:07+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml 3C5b2j.d5vzBXsr_5lXNTQXLw4pOn.bV 2020-05-02T18:34:17+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml _13tCsEmCVriJqY3St7kTE1Ecp3ejlTO 2020-05-02T18:24:12+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml gv10m8zuQ8cs0j_ahjQw3A5D0PS8lxRp 2020-05-02T18:21:11+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml ElVvEQd2DBUPbQQqMFZwd9wgXJndbcve 2020-05-02T18:18:12+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml Z293AgRPi1qDBUjVewDlQuixtefP3e_g 2020-05-02T18:17:02+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml a0THfZElJ7GRo2uZs46HIPP2W6ZPrhyc 2020-05-02T16:55:28+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml MoUNHFy5Whsud4lKKGLR4PshyJqhIRdG 2020-05-02T16:54:40+00:00 -aws-account-automation/AccountAlertTopics-Template.yaml MzDrAUGff.OAylsqnlF1IB23R4Tjh1yF 2020-05-02T15:38:05+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml swWQbW0hehc1a_eddTz7cVp9bJEtQlkN 2023-11-17T19:41:53+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml AVUh.25KDueWLrWdJPpj3TDul_6AeCoS 2023-10-21T12:57:40+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml crf6ggwgv8lyw4rEWPr.wV2dos5.D6rc 2023-10-21T12:12:42+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml PJP1NZKbQwxG24zAPsUaCCTRvP8NonIU 2023-10-02T12:30:54+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml HRz1.Pw0uOECw2NRo8jeowC9godavvKL 2023-09-13T21:28:08+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml LKUzGY3Ph_MTFnp.oqltcRBeJytpRuak 2023-08-08T13:18:52+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml YjKeoHknVZli4yfKsGywtBFfh4KgaL_4 2023-08-05T14:00:50+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml HLkGJ_P5c0vBjxuSxMQp74gGLUPwCVI1 2023-08-05T13:43:22+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml Y.soG4ExscQR9bZR7YxKm.0NziOKadDW 2023-08-05T13:36:37+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml zGL33jCUSLJkCU0pkc2RcwJ1oVNyOg8Z 2023-08-05T13:32:58+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml chzydc7Y2_IuQuLHpJzZ9nnmzAni8dC7 2023-08-05T13:29:16+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml HfoRL2PpdWVlzTWsif3bMxGsZpil4UzQ 2023-08-05T12:45:23+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml mYEbQHwX_gghp38puhd2IUWO5zKS.ABv 2023-07-06T20:31:09+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml 4DEjlMRRj_yaLOMpmyEpi01arpZgMAA_ 2023-05-16T15:11:44+00:00 -aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml cn1HMOFS.QFcThAxSvzw7PLBeQXTpGY8 2023-05-16T15:05:11+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml 4ztZczVKHD.R7_UvKoAlAqorPfyhTrsL 2023-08-08T13:18:52+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml qhFSeHI6wjotP7M2WNe8_rIcRomoh0Id 2023-08-05T14:00:50+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml PDojbrK563QsO5QNjc0cXtdyTE.6d6Rn 2023-08-05T13:43:22+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml E2vHR124el.BXbiwoF7qsz2K7A9vg9ie 2023-08-05T13:36:36+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml aQl9fhKWxdLxn6T1iCL6Ry7AyxGfqYPt 2023-08-05T13:32:58+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml OaLd7mOK1Psnr4fKtOfI.nTQGpGTMY.6 2023-08-05T13:29:16+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml BfbOYJMHH1Nzv8uiriqZaBV0yjPbVX4W 2023-08-05T12:45:23+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml CM9CxIdEJ24gwyeYlYjKvLcd0tWt4yHr 2023-07-06T20:31:09+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml k887OfKz0EiARd.37S2kNkkUUqxgwZ_M 2023-05-16T15:11:44+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml 5hedTJjrfk8YvtGJ30U0cvEdDTNCPgk1 2023-05-16T15:05:11+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml _WNhhtOkK9bdnZjKvqQEtr17lePfXGan 2023-05-03T13:32:03+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml 7ZNIVk9KUa1qpqYR8RLIBuN0LiLOcgOC 2023-04-28T19:08:48+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml hAFYtuakpZ0ILzkHtasCr.OnXry7RrX2 2022-10-18T14:14:44+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml zz37ZCuU0yeYZFpRTtswVkANGHoBt5HG 2022-10-18T13:43:06+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml Wn6H22U4zpHyY_bRajKwXEsYH8A0AyYb 2022-10-18T13:25:31+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml kClTXuzlaKCi3mt37.lzrn2YsO8KUHYQ 2022-09-11T06:33:20+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml pRQUKcsHU_XRX8Er_03epINoLY6hBL94 2022-07-16T14:33:43+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml E5sZOdmy5SOUO6j8riudG4b20BiZ9wvS 2022-03-23T11:37:45+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml jXaCGzP9urmrAnh4kWK5CPGPqbLQmmh. 2022-03-16T12:00:04+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml ctX5gqvQf5UUfYs7bboQDgFuVVL98Wwf 2022-02-20T15:18:21+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml J3P7NBx104cSOqR_FZ.bJATEFqEHCKnO 2022-02-15T14:07:49+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml qYsdvNVRP.YeZ_ndq_oxIplE79z8f60k 2022-02-15T13:23:29+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml pOMZgw3.dxX0qLm69zApUKE8QwPYsk9J 2022-01-15T20:58:19+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml bP0oWFzH65IdctO93oebPC6xwZN10GOi 2022-01-08T12:27:15+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml m4Lhi9DnLDrGFCYq2eOtD31taqqmPGin 2021-11-20T11:21:56+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml xhoQ0MBGwXU7R7sBedD_gH1DTURpmJLa 2021-08-04T09:52:56+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml mOjmFtszM0Sw.2IojW22y3i1wNi2kHjZ 2021-08-03T22:51:09+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml .24fo3brLTmOQf7wakcQbKRtQCoe3nLT 2021-07-31T22:23:55+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml bR6toUpoD_WDF.D5uDlYQHAMGkHAUs9W 2021-07-31T21:00:55+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml W22JdyazvcLOn_W7.X1BfdUO7ul0yo.J 2021-07-31T19:57:05+00:00 -aws-account-automation/AuditRole-StackSetTemplate.yaml 3z89P0uJgrstZZNxQXSCgbbQ9nr75fYK 2021-07-31T19:34:11+00:00 -aws-account-automation/AuditRole-Template.yaml mCQCrfuKfQBbIPb5XSZokXHEoYzhy8cv 2023-11-17T19:41:53+00:00 -aws-account-automation/AuditRole-Template.yaml Tg1YMkpzX5V4JhrZNT.yUBn2TbwpD1lt 2023-10-21T12:57:40+00:00 -aws-account-automation/AuditRole-Template.yaml XUTYiLcR3d1RKrcOZv03PGYlfRgfgFm1 2023-10-21T12:12:42+00:00 -aws-account-automation/AuditRole-Template.yaml uF93dGI7xTNGdp0qFHyAT_.mVLItix4E 2023-10-02T12:30:54+00:00 -aws-account-automation/AuditRole-Template.yaml wbdUVGOWS0IccB1bwXXl1IQIV1u0YTej 2023-09-13T21:28:08+00:00 -aws-account-automation/AuditRole-Template.yaml Vdw.MmcGqxJ10cO0CT.tVld8EMwH258d 2023-08-08T13:18:52+00:00 -aws-account-automation/AuditRole-Template.yaml JKt3hKXsUi2z3PXlJAGKuAInDXtXLxVw 2023-08-05T14:00:50+00:00 -aws-account-automation/AuditRole-Template.yaml X2gzvvUHJY9Bkd1UAkDCebYThToAKXpn 2023-08-05T13:43:22+00:00 -aws-account-automation/AuditRole-Template.yaml xp3eCdVHFZhSCECBMNzl8LlfQzhkK5XA 2023-08-05T13:36:36+00:00 -aws-account-automation/AuditRole-Template.yaml 0ePAwe2G1wjtFBcKd7AVpxeapyGo8oGz 2023-08-05T13:32:58+00:00 -aws-account-automation/AuditRole-Template.yaml t5iwXVBiswSy6wvXgYhBcbFLH43KnC1n 2023-08-05T13:29:16+00:00 -aws-account-automation/AuditRole-Template.yaml 4c04hypGjPV3GG6oJ8VcPdXV5LC2h12g 2023-08-05T12:45:23+00:00 -aws-account-automation/AuditRole-Template.yaml Qvb8oA1RCoR6RQoDCqAau14YXsv2TbqK 2023-07-06T20:31:09+00:00 -aws-account-automation/AuditRole-Template.yaml 58RqBLI3rCe_3zachd2cIh49dPA0N3n7 2023-05-16T15:11:44+00:00 -aws-account-automation/AuditRole-Template.yaml PlOtmyxsKExQcaHuHrivr4iYybCFfMQZ 2023-05-16T15:05:11+00:00 -aws-account-automation/AuditRole-Template.yaml OX4vgzR8Z9XFV1p6p4j0gSiDJmjW6rox 2023-05-03T13:32:02+00:00 -aws-account-automation/AuditRole-Template.yaml 4KF3OiYBo2GSW2hdejPRSNZxHj5OWrmZ 2023-04-28T19:08:48+00:00 -aws-account-automation/AuditRole-Template.yaml bvEUQmMCCEBB7YFFg.M9ljR.3eJncwMS 2022-10-18T14:14:44+00:00 -aws-account-automation/AuditRole-Template.yaml Imy8bMFqWVpSSUUGUiLF0b7DNvuQ38Nn 2022-10-18T13:43:06+00:00 -aws-account-automation/AuditRole-Template.yaml tBn8QyOVH185jV5RtQ3sG.myzCKYYx6I 2022-10-18T13:25:31+00:00 -aws-account-automation/AuditRole-Template.yaml rREAW54_A3qTyw1NCPNrOihHWKGm1jMg 2022-09-11T06:33:20+00:00 -aws-account-automation/AuditRole-Template.yaml r56k07.Zu3vuBMTmL3aKexHY4DZ1KuL5 2022-07-16T14:33:43+00:00 -aws-account-automation/AuditRole-Template.yaml zABq.jOyKg0SJ8mp4sIG2MieBzCTW4z. 2022-03-23T11:37:45+00:00 -aws-account-automation/AuditRole-Template.yaml jcQhhaqq2Y9Dxal7vWG4DVgAEi3EUCVR 2022-03-16T12:00:04+00:00 -aws-account-automation/AuditRole-Template.yaml fuKnC6oi3Hh6aq1e2LHoLTSQuDImEjP2 2022-02-20T15:18:21+00:00 -aws-account-automation/AuditRole-Template.yaml oGbybddTHwJnQWORkGUlxdEhSmMW..OH 2022-02-15T14:07:49+00:00 -aws-account-automation/AuditRole-Template.yaml FslGSmJ5zoMOk003DwImpIdcjGSf1gvE 2022-02-15T13:23:29+00:00 -aws-account-automation/AuditRole-Template.yaml 1CM5sYdaMKNR2mr6FmMejv3MybpGSI.2 2022-01-15T20:58:19+00:00 -aws-account-automation/AuditRole-Template.yaml wqaAXVP6AM0h.B7rSfM29QAlq1DxOB_v 2022-01-08T12:27:15+00:00 -aws-account-automation/AuditRole-Template.yaml Me8pluKg8EYn6Tz2SH6HLKY4qq8VuNig 2021-11-20T11:21:56+00:00 -aws-account-automation/AuditRole-Template.yaml dHk194kgY2xFrEVHL052iZ9NY5V2A6Qf 2021-08-04T09:52:56+00:00 -aws-account-automation/AuditRole-Template.yaml C1sIGnAEgZZggYg8kjBNih5_W67iCayz 2021-08-03T22:51:09+00:00 -aws-account-automation/AuditRole-Template.yaml 9KgkScyET5FPd8GXib.A_swtZZ8BajIV 2021-07-31T22:23:55+00:00 -aws-account-automation/AuditRole-Template.yaml dzxX2q.rVRkcDLk2JnUwxuadtgQHV.Mt 2021-07-31T21:00:55+00:00 -aws-account-automation/AuditRole-Template.yaml DhPo0xuujjr7OwaNPFdQ3c2ochU7nE.K 2021-07-31T19:57:05+00:00 -aws-account-automation/AuditRole-Template.yaml DaKsYEwGUgmtWPknTZNLEgwvJiC4WJPD 2021-07-31T19:34:11+00:00 -aws-account-automation/AuditRole-Template.yaml uxUx1Kt0tgKhM0u0jvYUgzvjyRh7K6qe 2021-07-29T23:24:15+00:00 -aws-account-automation/AuditRole-Template.yaml KWjPHPHz6PNJC6QzF6E8VtF8_p7wqSwZ 2021-07-25T17:26:52+00:00 -aws-account-automation/AuditRole-Template.yaml b22dwvVFMWgJ3gkvkuCjdc1hTCe_GJfY 2021-07-25T17:20:27+00:00 -aws-account-automation/AuditRole-Template.yaml GIKgzcPGlyA_N9fQu_OwUSzotOb6ptaD 2021-07-25T17:18:39+00:00 -aws-account-automation/AuditRole-Template.yaml U2PP5uSzQ_.N4TqqD7AdgqBLe9MrMsaz 2021-07-25T16:36:08+00:00 -aws-account-automation/AuditRole-Template.yaml ncMcHX2ZDzR.AkLvzL.7RJXv6Liq85fx 2021-07-25T16:23:49+00:00 -aws-account-automation/AuditRole-Template.yaml 4FbyiCALaFaH2wDqu2wTVQcOuVllNhc9 2021-07-25T16:21:39+00:00 -aws-account-automation/AuditRole-Template.yaml F1U.mP5NseNJlhldJe_BuLNWbN.eX5F6 2021-07-25T16:19:33+00:00 -aws-account-automation/AuditRole-Template.yaml 6NVrgEme_UJDm8PuypxRNu4YQzY33IXV 2021-07-25T16:07:14+00:00 -aws-account-automation/AuditRole-Template.yaml Nr9LlSNywOUE0GJjZRLgr3CFSWG5jATW 2021-07-25T15:30:45+00:00 -aws-account-automation/AuditRole-Template.yaml fHKPLQXq.jyPEh3EzeL0IW7_DBvX8m9p 2021-07-25T15:27:39+00:00 -aws-account-automation/AuditRole-Template.yaml u.b3jqps_xtClrfMBXAHfiwymqER3JlF 2021-07-25T14:34:52+00:00 -aws-account-automation/AuditRole-Template.yaml lg6HMnkxi0mzY0xPJDMxSBrj_2kzOpxr 2021-07-07T10:48:52+00:00 -aws-account-automation/AuditRole-Template.yaml BG0A35d4l33NWf65T1.kr9Y2DZmx1Pos 2021-07-05T17:05:25+00:00 -aws-account-automation/AuditRole-Template.yaml CuDmsjgerft5C4TTNDddgS3f380Iqf2j 2021-07-05T16:36:35+00:00 -aws-account-automation/AuditRole-Template.yaml 4lDaJpREL7.NjaSzuaT8tmuCnoE_hq_4 2021-04-10T18:14:19+00:00 -aws-account-automation/AuditRole-Template.yaml Ml1K9T3jNgDww9YoyBQbjBIUtFmPPRRd 2021-01-20T17:39:46+00:00 -aws-account-automation/AuditRole-Template.yaml ioJT43fret9fhn_6Bq8hZ9YVgPt2m6Cq 2020-12-31T12:38:56+00:00 -aws-account-automation/AuditRole-Template.yaml 3XTUea3o_vu3BRTr23RNDjQS7TYN3s1H 2020-12-20T13:13:33+00:00 -aws-account-automation/AuditRole-Template.yaml Nysn1ZfAIu3KWHafF.kqThNv1ML4h4Cs 2020-12-20T13:12:06+00:00 -aws-account-automation/AuditRole-Template.yaml IJulElsT.Z5grkIAQ4Cv61_roNlh3D60 2020-12-20T13:08:56+00:00 -aws-account-automation/AuditRole-Template.yaml D._g5LhrEOYSMUmAkmtMOcdfdAE3v.cZ 2020-12-20T12:50:35+00:00 -aws-account-automation/AuditRole-Template.yaml 6q_WcJx5fcu.UzKd9du6j35LFWBBTelc 2020-11-25T18:20:49+00:00 -aws-account-automation/AuditRole-Template.yaml bCbSAlAqv9SMqfF9WlfPz1YCaozQ0z_k 2020-10-23T14:00:32+00:00 -aws-account-automation/AuditRole-Template.yaml g5d6ylpZfHeIebA2W2nZZrlOnuTMW2Sh 2020-10-23T13:48:36+00:00 -aws-account-automation/AuditRole-Template.yaml VMKF2_kTqXHm8qanU5W1IqLDmkfhoe3O 2020-10-23T00:17:24+00:00 -aws-account-automation/AuditRole-Template.yaml P3xg_82doKpE5BO67Nso9bm5MXHo2zud 2020-10-22T23:26:35+00:00 -aws-account-automation/AuditRole-Template.yaml hy4f.k1KVa2FZIcj886RWA6VpgkMSkdU 2020-05-02T18:35:07+00:00 -aws-account-automation/AuditRole-Template.yaml 4pgL8Gx7S9jzptlcN.5le6FbymvrUXUg 2020-05-02T18:34:17+00:00 -aws-account-automation/AuditRole-Template.yaml RIDH4_3Rdc12sMAM8UMJq4XP5nruK92m 2020-05-02T18:24:12+00:00 -aws-account-automation/AuditRole-Template.yaml 51s_SKriEZJZiCvKiMPWAgAJVuMjPalq 2020-05-02T18:21:11+00:00 -aws-account-automation/AuditRoleTemplate.yaml us3Yzuyonny4Qcu0t8o1EedNVZ5t6ANj 2020-05-02T18:18:13+00:00 -aws-account-automation/AuditRoleTemplate.yaml r0pfYyVWIK0_eVYYvRz44WvSlApMnjru 2020-05-02T18:17:03+00:00 -aws-account-automation/AuditRoleTemplate.yaml omyETXfPRLxNdkDcxZ_ATSZaaZHMkvDM 2020-05-02T16:55:28+00:00 -aws-account-automation/AuditRoleTemplate.yaml HWh7NqJjFYdh1I8p_xqi_V0k68pYL0O8 2020-05-02T16:54:40+00:00 -aws-account-automation/AuditRoleTemplate.yaml Mp7RPAXy64.0sDhKVdlpSEWZswX28HJt 2020-05-02T15:38:05+00:00 -aws-account-automation/BillingBucket-Template.yaml EX2._AbFoOH1d0FN9g7bveMkOPmcdsUA 2023-11-17T19:41:53+00:00 -aws-account-automation/BillingBucket-Template.yaml NkEwKRo8TGEOCs3rBx8Km8deR471g0mY 2023-10-21T12:57:40+00:00 -aws-account-automation/BillingBucket-Template.yaml p5EgbrwcTPi5k2E8u.YHZVA.pNmAocSi 2023-10-21T12:12:42+00:00 -aws-account-automation/BillingBucket-Template.yaml em.JxMFJvoAC0BAf2ROYSUhq2fLbgfDI 2023-10-02T12:30:54+00:00 -aws-account-automation/BillingBucket-Template.yaml _0h.augJy96NeAVpxs2g.ZIG2PqyB4Mh 2023-09-13T21:28:08+00:00 -aws-account-automation/BillingBucket-Template.yaml qBAD9vAu3LhxRRoJJBjyvOND1g1UrPtB 2023-08-08T13:18:52+00:00 -aws-account-automation/BillingBucket-Template.yaml sS6pnqOgva4oxaDpqpeVVfUn3tR7Z_eD 2023-08-05T14:00:50+00:00 -aws-account-automation/BillingBucket-Template.yaml SIZzBqIJhHo85SomN.kcWt8mDyp9ECr9 2023-08-05T13:43:22+00:00 -aws-account-automation/BillingBucket-Template.yaml liqaHFHfxKMwFX0ApVYbWEOWlQhD3GWQ 2023-08-05T13:36:36+00:00 -aws-account-automation/BillingBucket-Template.yaml x_sE1WV9viFUu1PoeOamDNGn3XmUSyt_ 2023-08-05T13:32:58+00:00 -aws-account-automation/BillingBucket-Template.yaml 55sQwV4lB3dDRcC1YbWhTtXr1eMxXU2r 2023-08-05T13:29:16+00:00 -aws-account-automation/BillingBucket-Template.yaml IlkU0nmuqsETYMS.vqKKkxjhIMNukw.z 2023-08-05T12:45:23+00:00 -aws-account-automation/BillingBucket-Template.yaml TZcAVUAem3.s6UBx.vxU6jaGtJ.g52sp 2023-07-06T20:31:09+00:00 -aws-account-automation/BillingBucket-Template.yaml xYp8ia_.xxq1K3smfBPv6Ls.bYEJEuLW 2023-05-16T15:11:44+00:00 -aws-account-automation/BillingBucket-Template.yaml TbhiGgeJTNIxanEH8urjT1k.oLSqmiYI 2023-05-16T15:05:11+00:00 -aws-account-automation/BillingBucket-Template.yaml Y0DwiWGKvdDfsediFCWx6OqldH9Aq.oo 2023-05-03T13:32:02+00:00 -aws-account-automation/BillingBucket-Template.yaml AAufkfx7Ty5wWONfmtVsWVsKd7vid90g 2023-04-28T19:08:48+00:00 -aws-account-automation/BillingBucket-Template.yaml vsvmDRtb3rfXHju_C7Pqy5D8KhhEh55j 2022-10-18T14:14:44+00:00 -aws-account-automation/BillingBucket-Template.yaml iIilb1wILxvsaZN7ZoUpF11Mc7pwAjH4 2022-10-18T13:43:06+00:00 -aws-account-automation/BillingBucket-Template.yaml XjNWxQTGwQASmS3xdWBC9gUkNRTExmse 2022-10-18T13:25:31+00:00 -aws-account-automation/BillingBucket-Template.yaml falpunVVgHUGxK_jn0itqUZPb7K7Fs2j 2022-09-11T06:33:20+00:00 -aws-account-automation/BillingBucket-Template.yaml UODmcFq2kKE.tAfKpYzNeLiVs8unzwQA 2022-07-16T14:33:43+00:00 -aws-account-automation/BillingBucket-Template.yaml hN_tE6GeNfnAYAL5AcCWwGN6_WvuV_RV 2022-03-23T11:37:45+00:00 -aws-account-automation/BillingBucket-Template.yaml kM2Esw7xdzfZfOAJ2Bu3eJaOPq3I8ZhJ 2022-03-16T12:00:04+00:00 -aws-account-automation/BillingBucket-Template.yaml lbyD4TgnP52M5EistQA4FeGcK1PvR5Hk 2022-02-20T15:18:21+00:00 -aws-account-automation/BillingBucket-Template.yaml R7TkV6TfRjeDi0BVSCW3iKPTY.WEoGWB 2022-02-15T14:07:49+00:00 -aws-account-automation/BillingBucket-Template.yaml AL88.7qL7013Sl4KEZ1kEBKunr_xms.4 2022-02-15T13:23:29+00:00 -aws-account-automation/BillingBucket-Template.yaml OA1sthz9iwNkbVusnQAGaCkuHKchXTFA 2022-01-15T20:58:19+00:00 -aws-account-automation/BillingBucket-Template.yaml XKCGqLmWZ6gxPxskYHj735YUFpnJiUsY 2022-01-08T12:27:15+00:00 -aws-account-automation/BillingBucket-Template.yaml nrg3deHZAfRAC13HUQE260b8Icd.19WH 2021-11-20T11:21:56+00:00 -aws-account-automation/BillingBucket-Template.yaml dyCmUAqF49g0wXbt8GkS1i8ZXTdAuAbV 2021-08-04T09:52:56+00:00 -aws-account-automation/BillingBucket-Template.yaml enH.ykNPMqQmd5IF9Gr4BA9ZW49cdbCh 2021-08-03T22:51:09+00:00 -aws-account-automation/BillingBucket-Template.yaml gypzfFdt7Ol4j2BGkhtWz80JR.dxHa24 2021-07-31T22:23:55+00:00 -aws-account-automation/BillingBucket-Template.yaml d1LbFfJDBmNYI1dWi2byQEdXu79rm0n5 2021-07-31T21:00:55+00:00 -aws-account-automation/BillingBucket-Template.yaml eAQklm5sfhokO4_VeFDmWoHJlIB7_8ks 2021-07-31T19:57:05+00:00 -aws-account-automation/BillingBucket-Template.yaml 3uqBPkur7vP9HB92nIYJbbkCaSndPVXh 2021-07-31T19:34:11+00:00 -aws-account-automation/BillingBucket-Template.yaml d_CLresCltl_IwM6au1flM6A08.knPRv 2021-07-29T23:24:15+00:00 -aws-account-automation/BillingBucket-Template.yaml e5bfipNZVwkOIndgPHpaxwQnkIhXJSzM 2021-07-25T17:26:52+00:00 -aws-account-automation/BillingBucket-Template.yaml bsvaQIJfRONz6f60yOjAlwNvCmbOZ4tu 2021-07-25T17:20:27+00:00 -aws-account-automation/BillingBucket-Template.yaml aFDSRDW0hPFzDZgArHe.AMfh196A17wk 2021-07-25T17:18:39+00:00 -aws-account-automation/BillingBucket-Template.yaml cudMmC0tY_mRJVHigdRKBrvJKLjr26tf 2021-07-25T16:36:08+00:00 -aws-account-automation/BillingBucket-Template.yaml mDvDkmEHl3wrxZmArnBiBS27QJbTiySr 2021-07-25T16:23:49+00:00 -aws-account-automation/BillingBucket-Template.yaml JjYnkPBKgZ5zn9SIea.rFKaDb6iEDFOb 2021-07-25T16:21:39+00:00 -aws-account-automation/BillingBucket-Template.yaml Y.fagphUye1U51JWZKkBkW7H5aemMbGO 2021-07-25T16:19:33+00:00 -aws-account-automation/BillingBucket-Template.yaml tLvNzBq.X2lUvBYRMiBRXc5iALJc1eTx 2021-07-25T16:07:14+00:00 -aws-account-automation/BillingBucket-Template.yaml ffDFH5D9pkn8Li46KbJ6TnHlgYHWGKNz 2021-07-25T15:30:45+00:00 -aws-account-automation/BillingBucket-Template.yaml zzaqeSfcSOcMS0xz1g_0aV6AF4aw1U6m 2021-07-25T15:27:39+00:00 -aws-account-automation/BillingBucket-Template.yaml 2DSxa1mxPx_pTRnkeCDEl7OAtxU42_bW 2021-07-25T14:34:52+00:00 -aws-account-automation/BillingBucket-Template.yaml cIWnh.KXK7LhJOxEO.BIYUIpobMcYO8Z 2021-07-07T10:48:52+00:00 -aws-account-automation/BillingBucket-Template.yaml hhP3i4Ysm1nxRtA3BaFqUWu8Z.10eII. 2021-07-05T17:05:25+00:00 -aws-account-automation/BillingBucket-Template.yaml YE2gbIosBx7fzcTCSyz71.Igpz1vC9HG 2021-07-05T16:36:35+00:00 -aws-account-automation/BillingBucket-Template.yaml iA6ofdFNOApGuHL.gYm0R6iaYjYKRyI3 2021-04-10T18:14:19+00:00 -aws-account-automation/BillingBucket-Template.yaml v8wOufjEmGnP_9tkFrXCpdh3CyNN9zXk 2021-01-20T17:39:46+00:00 -aws-account-automation/BillingBucket-Template.yaml ZeEBBPzwckd96BCqAT3_Y45jvX7rUmAA 2020-12-31T12:38:56+00:00 -aws-account-automation/BillingBucket-Template.yaml UGIAq7AUfraThj3NIS8tFm2UnFX_oPZv 2020-12-20T13:13:33+00:00 -aws-account-automation/BillingBucket-Template.yaml jZleNN5IWrHztakcrBevgb44DhlKwasE 2020-12-20T13:12:06+00:00 -aws-account-automation/BillingBucket-Template.yaml t2C8NzECKNcG.wclRNynP7nfK94xVGYe 2020-12-20T13:08:56+00:00 -aws-account-automation/BillingBucket-Template.yaml XIkyYjzhIyevOhZDRGODpGuWvYuKR2RD 2020-12-20T12:50:35+00:00 -aws-account-automation/BillingBucket-Template.yaml hNWL7eeMdQ7FnXfkc0iMUn.JiKvQMaic 2020-11-25T18:20:49+00:00 -aws-account-automation/BillingBucket-Template.yaml lJSvDbF7zqr3UojF3ybO1j7OKZa7e5EO 2020-10-23T14:00:32+00:00 -aws-account-automation/BillingBucket-Template.yaml 3U.9IwP.G0kbCr8hcVk1ddSwhYPkKYVC 2020-10-23T13:48:36+00:00 -aws-account-automation/BillingBucket-Template.yaml r3iigCclWWoxBDEFrSXy9anAXzzDF0an 2020-10-23T00:17:24+00:00 -aws-account-automation/BillingBucket-Template.yaml xuqCV5LpzhlGoS5iCXbP77skHOYRX5_q 2020-10-22T23:26:35+00:00 -aws-account-automation/BillingBucket-Template.yaml C2SnzVT6tdDqeKDZmAiWU16VeV.XSMvX 2020-05-02T18:35:07+00:00 -aws-account-automation/BillingBucket-Template.yaml OrluV7YNXqdXbHJ5V4.T0wZYmtHB7tQw 2020-05-02T18:34:17+00:00 -aws-account-automation/BillingBucket-Template.yaml igxxQIsAqFBUohTgxWebYz2aV_A7BSya 2020-05-02T18:24:12+00:00 -aws-account-automation/BillingBucket-Template.yaml T8lONELV7cy.9.Urqb6Lgrphrc5HSdVf 2020-05-02T18:21:11+00:00 -aws-account-automation/BillingBucket.yaml fvyZGNJDRGk6IbAX7e_FgbUvBv2alywX 2020-05-02T18:18:12+00:00 -aws-account-automation/BillingBucket.yaml bGBmjfSfrv6EQ3MGcXivPbjugI5R1fRp 2020-05-02T18:17:03+00:00 -aws-account-automation/BillingBucket.yaml 1XLJbxiaxaJl4LBgfmpDwBxIABm26sw3 2020-05-02T16:55:28+00:00 -aws-account-automation/BillingBucket.yaml R3EPeoX.aR2FMGQTzQ4YRxIogRi1YtxF 2020-05-02T16:54:40+00:00 -aws-account-automation/BillingBucket.yaml Mt6zU5KgoO8AWTS0ERHL0z7WThCrCVI0 2020-05-02T15:38:05+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml diiiu0HEGAZnufJgVZVXgHYVMGmkhFEI 2023-11-17T19:41:53+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml 1albkdj_nXwLAQ0cMtRP6KgMbCaMRFGW 2023-10-21T12:57:40+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml zgYixS400u_0svT75Sa4lXYo6BzF.acH 2023-10-21T12:12:42+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml 5KnYpkbvFIPL6NZsfF3WGhx11w3Ss4BG 2023-10-02T12:30:54+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml V6oJDSkGy8X7MsOktGWqhLFvse7d995Z 2023-09-13T21:28:08+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml Li2V3P2EzHDpadD5OQSQMdNPtr5HXCQc 2023-08-08T13:18:52+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml RF24RHSpWJZ8cS._SITZVIZ8UOHy9FqX 2023-08-05T14:00:50+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml 6rWRPgNmzPjl3cItXhyQTVRGrxLD3N3h 2023-08-05T13:43:22+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml W_OHf6aAk31GllDxv.zlXf9cmguGdP6x 2023-08-05T13:36:36+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml K0h9GiKaozV5rDMOgwxSCSQZhg8kt3ii 2023-08-05T13:32:58+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml 0MkHmo1KttrOCKzbO4KPsoFayjAoe3ii 2023-08-05T13:29:16+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml _b8U68TzDEMaurCdqslBOmTgC0gcivhM 2023-08-05T12:45:23+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml _i2O30FJFyHv.81EnwLlnRBeBcBfeVjN 2023-07-06T20:31:09+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml O4GKsXEBNNBUF3Pao1YTOgZft6C1u3pR 2023-05-16T15:11:44+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml .YXoVlrbea.z8BADcWxNzOF0beM3XPhb 2023-05-16T15:05:11+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml ttAXgqGGoHFi.EB1HVLRMKrsZSGxZDql 2023-05-03T13:32:02+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml 4vuzf5VfaVLYuesO7L2FJNT.6SKX2ELG 2023-04-28T19:08:48+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml xEHcdCcW8NUPjU346rs.bwKRqz8TFll. 2022-10-18T14:14:44+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml A6bDwaAIzQKXlHIA0ayDImpo8SuISZUi 2022-10-18T13:43:06+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml IF4W7q2pNTWV6nH1zvk6nCRCaZIbtl8A 2022-10-18T13:25:31+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml iIfjENGEa4HJRFi12T3A_vbMdFqswKY_ 2022-09-11T06:33:20+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml DdtgeIWdUPjpTJovURwvJ6GhfwGRPWwA 2022-07-16T14:33:43+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml J4K.YwYWFG2BF89eCcg_FSw1WIl04pcr 2022-03-23T11:37:45+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml cnbz_IRYikJAYApTdTgu4ucJ3eu1uasR 2022-03-16T12:00:05+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml NjvOYV8HANUV6A8IDPHB6OlpMwWCStRr 2022-02-20T15:18:21+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml yHFLClt18hOeP6q0XnfXvpgUw_H0M7g3 2022-02-15T14:07:49+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml O_QkJxMhZObOs._wXJYsgs6rw2YE6.T8 2022-02-15T13:23:29+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml 03NkZWzgw0fErwZIk29Co_o0lRC8m_kQ 2022-01-15T20:58:19+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml dhVwI1l2_Is2cp1DWRt3sno9.CLJWiVX 2022-01-08T12:27:15+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml aR9E08C9gEWAeDvQSnnFqD7P6lkEvkCL 2021-11-20T11:21:56+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml TyvZlCOyLKIFs6G696kLu2ZyUjwhOdS_ 2021-08-04T09:52:56+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml lX0yX.5ehOKACuUl2hQBkLPgi7JGU4n4 2021-08-03T22:51:09+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml ZlL1v4cWcsFujFbSNq8ukObBGgIi.K_J 2021-07-31T22:23:55+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml P_fDSa1ppUL3MBpuCZ2goNM2Vle1uAy6 2021-07-31T21:00:55+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml YeGJmC4DhSg9M4omVhPD0aMJaP_wi_kK 2021-07-31T19:57:05+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml pCf65u1LDXQuTzgVUhAUmtOgDwPoump5 2021-07-31T19:34:11+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml SH6fvwoza2LiaYa4u7aqhxW1jLACXLNk 2021-07-29T23:24:15+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml 7Ut7Kp9nm4WO34TgWQofiGsdbR.EatV2 2021-07-25T17:26:52+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml zqQTHcC1jqZK1zAIQxZc0CGlVfMamXvJ 2021-07-25T17:20:27+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml 8LLC8xtWXvfH1YzBWOyx5cF6xNVkgvQ7 2021-07-25T17:18:39+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml MsLVoZIL6G3G2u.VKlJRCgltkjrn3O0Z 2021-07-25T16:36:08+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml ZxYkqZ8HPey1ycIXyTXbpiyCwOE.XVLJ 2021-07-25T16:23:49+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml EGoGAA8tOIWCybGJD_a0sL1Sc5DqwJoW 2021-07-25T16:21:39+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml VdHKDkluWaNHwA_sxnlUfC_7qZiCUAC3 2021-07-25T16:19:33+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml DOlN2iZnNLXIfv5vnzdca4EiN_.GL7kW 2021-07-25T16:07:14+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml sJyaF_WyXlRj0DmbNqyEn8iTzPSxQaC4 2021-07-25T15:30:45+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml DEg.N7DhTThjzgRDAMLTjjH54YCJSoD4 2021-07-25T15:27:39+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml bBM9CmlEoRnY93w2QeYLLPnxizDzRPdM 2021-07-25T14:34:52+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml Z2Vj4OSgK26WzmvVNNz5QFGEMzgsWdgp 2021-07-07T10:48:52+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml z4sxQ_m6ih0gYZwZVXNcHjf7mXqT5QYj 2021-07-05T17:05:25+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml 7F83PHxLGE9hIJ8yAWkbeBTOAq9vZe6D 2021-07-05T16:36:35+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml XYHPeBCpxTmIswCuLIOYOqQz6I0FFw_K 2021-04-10T18:14:19+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml ydBgHSeoKX2ulVWMYOJAKti6zNQSkmt2 2021-01-20T17:39:46+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml cd_PjEOllGPdp7jS46P1slFKAsHh.clV 2020-12-31T12:38:56+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml K6DJCfUiqKcb6QsRxgKWASY_OLsHKJKe 2020-12-20T13:13:33+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml SV8.9Y37hc43Q_LrNwJij7Vk1uDlQpd7 2020-12-20T13:12:06+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml ddqT_bS295RrfPEzhBORT7QNShHc5X_r 2020-12-20T13:08:56+00:00 -aws-account-automation/BillingMetrics-Template-Transformed.yaml cj6xTKu1Wgsba1BsjK7MNq1R1Jgf4C1n 2020-12-20T12:50:35+00:00 -aws-account-automation/BillingMetrics-Template.yaml da1j8QCjfTy5GNc_z1BMffRaruWaJtJU 2023-11-17T19:41:53+00:00 -aws-account-automation/BillingMetrics-Template.yaml _oixPN4kzrnIwaoOByFKaIFsxAUiN8pz 2023-10-21T12:57:40+00:00 -aws-account-automation/BillingMetrics-Template.yaml sBcdXJH0QY1nRTE2PCAD9nW_9IgHUcXt 2023-10-21T12:12:42+00:00 -aws-account-automation/BillingMetrics-Template.yaml bOB0yLGvHD6Q9S1qAjKyPVD.t6UVWM49 2023-10-02T12:30:54+00:00 -aws-account-automation/BillingMetrics-Template.yaml vV2pWio5lGsByf_pyueIHrMD5.0WxFCY 2023-09-13T21:28:08+00:00 -aws-account-automation/BillingMetrics-Template.yaml bL6w6UZ7u01cdJvs9opfXdtmWZpFCKbV 2023-08-08T13:18:52+00:00 -aws-account-automation/BillingMetrics-Template.yaml JoR7Z4V6nRbxlYX5O4QW4AfNcnzg2sTv 2023-08-05T14:00:51+00:00 -aws-account-automation/BillingMetrics-Template.yaml 9G.A.Rv1Ld1LvQUZZq9N3FwZ87kfe2vx 2023-08-05T13:43:22+00:00 -aws-account-automation/BillingMetrics-Template.yaml vsEi3zXjKXqhnLeMcCZMknBEsk_9q4Lu 2023-08-05T13:36:37+00:00 -aws-account-automation/BillingMetrics-Template.yaml 8ujrlRBYpkP8xwbeOmpXPt05fhFo2KSc 2023-08-05T13:32:58+00:00 -aws-account-automation/BillingMetrics-Template.yaml EfwJM4q6mFhz1mHQzPRyknJAIvi_mszT 2023-08-05T13:29:16+00:00 -aws-account-automation/BillingMetrics-Template.yaml eskVNxNq9hyKsfedPr9wyjeC4dYGqP8a 2023-08-05T12:45:23+00:00 -aws-account-automation/BillingMetrics-Template.yaml LmZVQD.sgL3i9h1.74qUyzlwPkPESBQz 2023-07-06T20:31:09+00:00 -aws-account-automation/BillingMetrics-Template.yaml GcOMCd59sJwWg82dIG8xWFFhlvtq8lQg 2023-05-16T15:11:44+00:00 -aws-account-automation/BillingMetrics-Template.yaml x_pEjgMxqzmlOxxBdc9P_cHYCbPdc4Y5 2023-05-16T15:05:11+00:00 -aws-account-automation/BillingMetrics-Template.yaml vwfxxXRUSU.FptYs8wtf5rM2jDUIELzz 2023-05-03T13:32:02+00:00 -aws-account-automation/BillingMetrics-Template.yaml OLHEAkF3dpSiDg.eAdK8OBD8t36DirE0 2023-04-28T19:08:48+00:00 -aws-account-automation/BillingMetrics-Template.yaml 3lMiBfVQGe2DkGZFlrU7salW1LTF29qW 2022-10-18T14:14:44+00:00 -aws-account-automation/BillingMetrics-Template.yaml fVSpFEQ4skTu_lISHID05mReJBLLYDb. 2022-10-18T13:43:06+00:00 -aws-account-automation/BillingMetrics-Template.yaml 3bocIIw3jLeEJ2fxsJ40ppYGJzKFw9B4 2022-10-18T13:25:31+00:00 -aws-account-automation/BillingMetrics-Template.yaml gue_8jILoXexU2m0ZKszLKXiEMThhUvM 2022-09-11T06:33:20+00:00 -aws-account-automation/BillingMetrics-Template.yaml r8WhgEhFplD5bPLOLnehQ9Igxxcz.4ob 2022-07-16T14:33:43+00:00 -aws-account-automation/BillingMetrics-Template.yaml PTTg8_YbYKOBZuIhUcG10TvzWU_zO4EX 2022-03-23T11:37:45+00:00 -aws-account-automation/BillingMetrics-Template.yaml .rh7wFkUO4qNPjH4.KdJjWmxqBfSN5zc 2022-03-16T12:00:05+00:00 -aws-account-automation/BillingMetrics-Template.yaml h_o3KLghOYNW7A8XqvZYr7woaVpIMcQm 2022-02-20T15:18:21+00:00 -aws-account-automation/BillingMetrics-Template.yaml Hi4FRFlN_PQFQftxkph3JUU3GjsR7GHh 2022-02-15T14:07:49+00:00 -aws-account-automation/BillingMetrics-Template.yaml QH1rD2GTPnHluXMjmnjuFrdsQCfVkgC0 2022-02-15T13:23:29+00:00 -aws-account-automation/BillingMetrics-Template.yaml larGtYWuzfkmDUXLLzgTe7nWqZ5WROew 2022-01-15T20:58:19+00:00 -aws-account-automation/BillingMetrics-Template.yaml wJ1ow0md85yyI6hJrKnJWqW7RyyQ2z1k 2022-01-08T12:27:15+00:00 -aws-account-automation/BillingMetrics-Template.yaml tsblBY_iEhpOL8Qs1V_ZNSOOUBxd_JEz 2021-11-20T11:21:56+00:00 -aws-account-automation/BillingMetrics-Template.yaml 0FIV0tUI1eMPyX26wkF1Zh8MpnP2DjdG 2021-08-04T09:52:56+00:00 -aws-account-automation/BillingMetrics-Template.yaml 7p1k5EkPAor_aqFMStBBoBdNhPxfVh4X 2021-08-03T22:51:09+00:00 -aws-account-automation/BillingMetrics-Template.yaml PLZ9dQ.o9W_9XfAe6YhqWHQ3PnQh8VLu 2021-07-31T22:23:55+00:00 -aws-account-automation/BillingMetrics-Template.yaml IVKVHy_iHtWALwz4Y7fzrBh4tp.KPlwB 2021-07-31T21:00:55+00:00 -aws-account-automation/BillingMetrics-Template.yaml 1N345.Fe_zIF2X66Wxzif0B6urE.Czxv 2021-07-31T19:57:05+00:00 -aws-account-automation/BillingMetrics-Template.yaml fwIDpLofaqUJZ0wtbVKEbe8P2HY9fMoG 2021-07-31T19:34:11+00:00 -aws-account-automation/BillingMetrics-Template.yaml YSKMXcKka.s1APkCraoUge6fA9Od9iAU 2021-07-29T23:24:15+00:00 -aws-account-automation/BillingMetrics-Template.yaml j3S2JWsuHRL2l5ZqcYKvNGinQo4LOjAC 2021-07-25T17:26:52+00:00 -aws-account-automation/BillingMetrics-Template.yaml KouLwutFPTSSYP7kO66h6f_m6.mlSvQJ 2021-07-25T17:20:27+00:00 -aws-account-automation/BillingMetrics-Template.yaml OyHnGJ5_PHnofXteS87efOlliluXFIqs 2021-07-25T17:18:39+00:00 -aws-account-automation/BillingMetrics-Template.yaml 9YFX20hPzZZnEGUxD3RY0dwBIBMz3d0t 2021-07-25T16:36:08+00:00 -aws-account-automation/BillingMetrics-Template.yaml mlMlNxtJaY8oTprl3IPcgu94PzEVhSjB 2021-07-25T16:23:49+00:00 -aws-account-automation/BillingMetrics-Template.yaml M8Lp4OnT_zCv42SRv5ouhG5D3wbHCcL4 2021-07-25T16:21:39+00:00 -aws-account-automation/BillingMetrics-Template.yaml D5eXse8G9v5vna4xyeTQzO0xvM.t9h8Y 2021-07-25T16:19:33+00:00 -aws-account-automation/BillingMetrics-Template.yaml GoMU9OUT0XWrvX0ok8de5WfK1PcnDVDt 2021-07-25T16:07:14+00:00 -aws-account-automation/BillingMetrics-Template.yaml cOzuggnDtBX.7ONDddKP8dmQ3BYpjQDx 2021-07-25T15:30:45+00:00 -aws-account-automation/BillingMetrics-Template.yaml nV5EAZ.hORxxb49qQJJ0F.M6r8vm75Jp 2021-07-25T15:27:39+00:00 -aws-account-automation/BillingMetrics-Template.yaml egX3dE1CmEYKO6Lk1W4bxxS11A277rdH 2021-07-25T14:34:52+00:00 -aws-account-automation/BillingMetrics-Template.yaml kIYdK9bScQGntSqK7u3OqI4gkE_IjuYO 2021-07-07T10:48:52+00:00 -aws-account-automation/BillingMetrics-Template.yaml 58yNP5z8xT1ezOwI_FrQ0zPVtJLq84kf 2021-07-05T17:05:25+00:00 -aws-account-automation/BillingMetrics-Template.yaml .krzawX.ogcKPNRrmwmWscxDwTRaRAo9 2021-07-05T16:36:35+00:00 -aws-account-automation/BillingMetrics-Template.yaml MqhidWPemdZANcdq.6fPjngpQPXaSyK3 2021-04-10T18:14:19+00:00 -aws-account-automation/BillingMetrics-Template.yaml Ihx2OxWDJW.JkljrAiowbFniwM.hIiHT 2021-01-20T17:39:46+00:00 -aws-account-automation/BillingMetrics-Template.yaml YGsBxNDJbiJD7Ky3vFF.4GrBS2EAvjmc 2020-12-31T12:38:56+00:00 -aws-account-automation/BillingMetrics-Template.yaml He2zIBBXGnvIuJlZ2geEHbYmd73qyNtu 2020-12-20T13:13:33+00:00 -aws-account-automation/BillingMetrics-Template.yaml oRfMluygeZbuXUvhqrn6osU9Os2_dl27 2020-12-20T13:12:06+00:00 -aws-account-automation/BillingMetrics-Template.yaml I5Wqa7Sfeywm0P3UileWk_oNtlHr4e50 2020-12-20T13:08:56+00:00 -aws-account-automation/BillingMetrics-Template.yaml zvicJLEpu22ufGsLOOuDamy17oQPfpMd 2020-12-20T12:50:35+00:00 -aws-account-automation/CloudTrail-Template.yaml UU68DkC0R0xZay175PoCLK8ykbODXR62 2023-11-17T19:41:53+00:00 -aws-account-automation/CloudTrail-Template.yaml eqmHgVTNgVwmp28U5rxQZHoYp2uVVbFP 2023-10-21T12:57:40+00:00 -aws-account-automation/CloudTrail-Template.yaml 1_ezSTY.b3bsHkxri04cmP_JzNhhmzPh 2023-10-21T12:12:42+00:00 -aws-account-automation/CloudTrail-Template.yaml 6Fy_04I74BcvKQx0uByrsP47md01P729 2023-10-02T12:30:54+00:00 -aws-account-automation/CloudTrail-Template.yaml yxFmFvNP9NRbYZwCbCdkROhS7Re2tSUX 2023-09-13T21:28:08+00:00 -aws-account-automation/CloudTrail-Template.yaml dr1DxcMMGN0IR1LSyNEjsmh9iOhHoCzc 2023-08-08T13:18:52+00:00 -aws-account-automation/CloudTrail-Template.yaml qrnA6FgdV56xwf4K78jnDccW._OeeP4T 2023-08-05T14:00:51+00:00 -aws-account-automation/CloudTrail-Template.yaml kd3ePlEaht4V_dB4uh1LYcdz.j855aZX 2023-08-05T13:43:22+00:00 -aws-account-automation/CloudTrail-Template.yaml elvLSbfYwy.2cyVxkc4zMCNS0MRPCRhK 2023-08-05T13:36:36+00:00 -aws-account-automation/CloudTrail-Template.yaml _1fGD.um0X6ls7svLnFASugyauxhfhrp 2023-08-05T13:32:58+00:00 -aws-account-automation/CloudTrail-Template.yaml iKEdoXk9ZUHffmzcHnZpANdTh20R7RxW 2023-08-05T13:29:16+00:00 -aws-account-automation/CloudTrail-Template.yaml 0kNENKJ7LdX_cTI8Od51XyKXBhJ.w4PU 2023-08-05T12:45:23+00:00 -aws-account-automation/CloudTrail-Template.yaml FwlkXPZYFEsLix8j0UGthznfy7GdrITH 2023-07-06T20:31:09+00:00 -aws-account-automation/CloudTrail-Template.yaml Cnvx_0GnQal1lD8t3oS0JsLTS2OpKTYR 2023-05-16T15:11:43+00:00 -aws-account-automation/CloudTrail-Template.yaml lpycCDcBOA4W1ao7fjo.lWHIk5RzkH2E 2023-05-16T15:05:11+00:00 -aws-account-automation/CloudTrail-Template.yaml 53etcHJiYq4_j1wyd1v7b2N7PnGnFbnP 2023-05-03T13:32:02+00:00 -aws-account-automation/CloudTrail-Template.yaml tYhExSCIkejN5uTyAlyZl0NiqpG2clWu 2023-04-28T19:08:48+00:00 -aws-account-automation/CloudTrail-Template.yaml iUjEEs0i413aonuF6ZpRbCsTp.BI_dfj 2022-10-18T14:14:44+00:00 -aws-account-automation/CloudTrail-Template.yaml vkSxtCXkOJC2OFU.5M4Goz8FElay0tvj 2022-10-18T13:43:06+00:00 -aws-account-automation/CloudTrail-Template.yaml HkPAJDj470x_mxj8ry_nzqqOuj62RVLt 2022-10-18T13:25:31+00:00 -aws-account-automation/CloudTrail-Template.yaml 0ZItWrevmMO4L60cglPgz2EnW9cEC4EP 2022-09-11T06:33:20+00:00 -aws-account-automation/CloudTrail-Template.yaml Oy7ZDpomMm4lIsMD5OdjurHw8HVbyO9c 2022-07-16T14:33:43+00:00 -aws-account-automation/CloudTrail-Template.yaml 7j61cdQLhI1ILLskTSaWk68Uafm6HCXV 2022-03-23T11:37:45+00:00 -aws-account-automation/CloudTrail-Template.yaml fC0d4Fd07NKM6K6ik1TAEaYauFfFPNw1 2022-03-16T12:00:05+00:00 -aws-account-automation/CloudTrail-Template.yaml KxBhUB9Q60hVa5XAllPhr.JyeOuSkAqW 2022-02-20T15:18:21+00:00 -aws-account-automation/CloudTrail-Template.yaml E3QQ5yoIcH8Hl.XB8T.j6yKlDfycRTuI 2022-02-15T14:07:49+00:00 -aws-account-automation/CloudTrail-Template.yaml 3pQfhlCR1mzO63PsYL8UrmAkoPN.PMxG 2022-02-15T13:23:29+00:00 -aws-account-automation/CloudTrail-Template.yaml 8B6On_O3nWLVp9AqggIPgwkWYZzkGFid 2022-01-15T20:58:19+00:00 -aws-account-automation/CloudTrail-Template.yaml vX3VI5FSPzNpTuhV61tkxt6dq_gDBmiR 2022-01-08T12:27:15+00:00 -aws-account-automation/CloudTrail-Template.yaml eYslkDQ99HWnY1oQtHlnU9JAGZoE75pR 2021-11-20T11:21:56+00:00 -aws-account-automation/CloudTrail-Template.yaml 8_bMsfrKDJJ2uPKRc0kFpsT9hySCAPqi 2021-08-04T09:52:56+00:00 -aws-account-automation/CloudTrail-Template.yaml gAjK8HIRYDyqpj7gGEoxUJGsaJxVcW4i 2021-08-03T22:51:09+00:00 -aws-account-automation/CloudTrail-Template.yaml 7rvNvjyvlOWkCgfGH2yRKasblaN94oPS 2021-07-31T22:23:55+00:00 -aws-account-automation/CloudTrail-Template.yaml O2QWAIvHPwn6CBZMPFIAjHTjwWL_c8lm 2021-07-31T21:00:55+00:00 -aws-account-automation/CloudTrail-Template.yaml tldBjcsXGS46TbXcP_J.sZ7daRkAtycU 2021-07-31T19:57:05+00:00 -aws-account-automation/CloudTrail-Template.yaml 6AXVr40dUmUBdUHB_MfiBVfd6GJcCJgF 2021-07-31T19:34:11+00:00 -aws-account-automation/CloudTrail-Template.yaml UjidDYv7qRoAQJrDi_ea_3fYvwdZcuDO 2021-07-29T23:24:15+00:00 -aws-account-automation/CloudTrail-Template.yaml OfZtQZGWSa4IRSIlc5u1hxK1MXi.ygGr 2021-07-25T17:26:52+00:00 -aws-account-automation/CloudTrail-Template.yaml g6h0e3qtGUQLtvDIKjhnfZCbEUjchPI7 2021-07-25T17:20:27+00:00 -aws-account-automation/CloudTrail-Template.yaml Vy94lmjs_.7UqKCVYPSbN3MhiiMRgh2d 2021-07-25T17:18:39+00:00 -aws-account-automation/CloudTrail-Template.yaml Sw8sNFK1UHFRaYPoZW2Z9VwoLhjj462d 2021-07-25T16:36:08+00:00 -aws-account-automation/CloudTrail-Template.yaml 2neG5Tf2CMeMhXK4ag70qeip3KdFLb8d 2021-07-25T16:23:49+00:00 -aws-account-automation/CloudTrail-Template.yaml MFG.t9FolYTAMkziKaGj5O7D0_fWKv_D 2021-07-25T16:21:39+00:00 -aws-account-automation/CloudTrail-Template.yaml vyEAdF_0fx_pBJj1bmoDWT84Igj08_Ys 2021-07-25T16:19:33+00:00 -aws-account-automation/CloudTrail-Template.yaml PtznHqLwnlqCivlV6qqirbNNFKq7YSFG 2021-07-25T16:07:14+00:00 -aws-account-automation/CloudTrail-Template.yaml hq7E8V4AU3tj8iTBcz9V66g0D5x5PoMQ 2021-07-25T15:30:45+00:00 -aws-account-automation/CloudTrail-Template.yaml HqObFINqECwEPYIFUcr0K3wBUG2.i1vl 2021-07-25T15:27:39+00:00 -aws-account-automation/CloudTrail-Template.yaml 2feUUfsmtvFa3amYwJMJqB5pkAHnr7Bj 2021-07-25T14:34:52+00:00 -aws-account-automation/CloudTrail-Template.yaml bpIn3_B_X7uV4ZZ2x8v5sBpxP0jxuELe 2021-07-07T10:48:52+00:00 -aws-account-automation/CloudTrail-Template.yaml 6PFephvEKjTsXjGnlXyzeA4exjKbsTg4 2021-07-05T17:05:25+00:00 -aws-account-automation/CloudTrail-Template.yaml dklTWn.O63t16pWQodVFukf7npRRn50e 2021-07-05T16:36:35+00:00 -aws-account-automation/CloudTrail-Template.yaml PkT3IOeCJHqRhxb2sjntcNgR4ehsam1Q 2021-04-10T18:14:19+00:00 -aws-account-automation/CloudTrail-Template.yaml 05n3J.X82BbxO0ixM2z_wk0fkhM8Nx51 2021-01-20T17:39:46+00:00 -aws-account-automation/CloudTrail-Template.yaml l0rMv0tRc1QVCN0JUnFWA0xGbkqZThLP 2020-12-31T12:38:56+00:00 -aws-account-automation/CloudTrail-Template.yaml rmsI1XVP3J4MOjY8REU5Mv9sgkH4afWy 2020-12-20T13:13:33+00:00 -aws-account-automation/CloudTrail-Template.yaml T1msLFYuol51yFgCraKBmfvIrL_cGqkG 2020-12-20T13:12:06+00:00 -aws-account-automation/CloudTrail-Template.yaml NW4yUxzYHGzHpTTm542TQGtpi1M3HCny 2020-12-20T13:08:56+00:00 -aws-account-automation/CloudTrail-Template.yaml a0JEIBmat_ywkheNbZixt.3Eqz9u0ZDc 2020-12-20T12:50:35+00:00 -aws-account-automation/CloudTrail-Template.yaml CP2.BT8.3CjuNBxCcn9Fu.jJqpRKIJ1X 2020-11-25T18:20:49+00:00 -aws-account-automation/CloudTrail-Template.yaml br33xDcakY9fZwEOFpZKW9LViaq6qys5 2020-10-23T14:00:32+00:00 -aws-account-automation/CloudTrail-Template.yaml ZmWlphEqRgPbGYsEwr04AAzMach9we6c 2020-10-23T13:48:36+00:00 -aws-account-automation/CloudTrail-Template.yaml 3Hm5b_PgsaZz_ihTHxASdMF4ia4BsSp1 2020-10-23T00:17:24+00:00 -aws-account-automation/CloudTrail-Template.yaml ngHig_Gy786l6epKogY5XcjE.ffdIjaY 2020-10-22T23:26:35+00:00 -aws-account-automation/CloudTrail-Template.yaml Q7jXD33R9NxmH6A70YyRJPrhro8uJMSl 2020-05-02T18:35:07+00:00 -aws-account-automation/CloudTrail-Template.yaml bcacJlhv.v9VTLB.e1l7H6f4nmP.R9z4 2020-05-02T18:34:17+00:00 -aws-account-automation/CloudTrail-Template.yaml 4ojQ70pJ0TxCvYe0q1axYa5eb.YTYIKR 2020-05-02T18:24:12+00:00 -aws-account-automation/CloudTrail-Template.yaml Gfi2yi27AXihB14E9r87NTZsZw8tvFmf 2020-05-02T18:21:11+00:00 -aws-account-automation/CloudTrailBucket-Template.yaml s94pUkXcKAkyrcMmo73xcm9nQJeB64zU 2021-07-25T14:34:52+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml Rk9t3ET3XKfErFyf1B0eWCPe3t9eZRyg 2023-11-17T19:41:53+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml vqPNSZ5zT5oEvrTfxQMIffi6QtJ7pjLX 2023-10-21T12:57:41+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml Q_FeQ3zRMLNeOBPbkKuU2NcoxwNV7Ckc 2023-10-21T12:12:42+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml Dj3E0LZVOCItqJZD5Q1k.bgARoCcYBBn 2023-10-02T12:30:54+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml KD0R13E5foh9bEdrlEVK0PgkeMjXkxk9 2023-09-13T21:28:08+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml rvuXOPNJS4RY9lHfNo.0FtBOm5mjDDv7 2023-08-08T13:18:52+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml kgZO5.Hm4ZwGeOMpEBEIvmTxTUHvdZ.x 2023-08-05T14:00:51+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml DHZBQU56AT.0N1SvI616rymj5ehkvp6c 2023-08-05T13:43:22+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml j4XwSJ3vvux9q9mJcHG4rZ6cXhnDYiF1 2023-08-05T13:36:37+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml Wm2pLqSipOaGbNcUFEgqoHF6wY35oAsZ 2023-08-05T13:32:58+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml N50jVk6tnukqTxKDbDlMRQ.8EecqRwu. 2023-08-05T13:29:16+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml j_cp3WBhppRLQ4tq4aQDMOJpd1kX3re1 2023-08-05T12:45:23+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml NXxsAAtsMtGLKpGbunkcR7.2pk3hvuSv 2023-07-06T20:31:09+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml 74CRr7k_BzMIJd5FCJP8yBD7t7JamwJ_ 2023-05-16T15:11:44+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml G0kmDgD9irLKqH0_GunRtaXMUzuRyiJ8 2023-05-16T15:05:11+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml hdBS.WPeTO92To6QGvPzpbox5q4FyV43 2023-05-03T13:32:02+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml LEgN1IrCdkAf_OwSjHAV9lfv2eHu4oR0 2023-04-28T19:08:48+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml FhRyFsAybw.Q8M30grfFr9WnHabNiOUT 2022-10-18T14:14:44+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml 1cnrfmpiqXC2q3ERk4txefnNrw0O.Q4j 2022-10-18T13:43:06+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml 8F7lo8jUCgbWP06OQ8tiUQ9.ylxh3QB8 2022-10-18T13:25:31+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml mD1JWoYhvOsG41_TYQSpiSotPw1kfHUY 2022-09-11T06:33:20+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml Y4OeipECF4lN7DVCnlK0osAhfHFCrzKO 2022-07-16T14:33:43+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml Oc.hYA6Aaps425Lt4puEQU.BQDCrr7zb 2022-03-23T11:37:45+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml DtTsIACRm6FY.z8KqZFQp81KfzARomo1 2022-03-16T12:00:05+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml yPbJWyiHqbP4M08Hh60wY9EdhbZWSG_Q 2022-02-20T15:18:21+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml ZUnmPuJONlZVo8YUDZU6vQm8zJshJX7P 2022-02-15T14:07:49+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml bkSMvICG6r8BQb2.JrfixyJ.tbscpr1e 2022-02-15T13:23:29+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml lvPpO9MIT6Kg6tw0CY_zKxd4LbpwHt1P 2022-01-15T20:58:19+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml Z7uL8gIQUpmQQ9p56rT8DZ_X2SI7IKQ3 2022-01-08T12:27:15+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml J7lvWS.ap74OuVXB7HNI.XOBJx0I2Thi 2021-11-20T11:21:56+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml cye5fRzn5faRTZeJs68x2QdyGAAvZHOS 2021-08-04T09:52:56+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml v4AkqG5Q8wNNBvd7A2D047NnDbeyawsp 2021-08-03T22:51:09+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml S2U5OEpKfK9bs8urHdiJySHC5n73DvHl 2021-07-31T22:23:55+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml 5KzPE0KCeWEUWPR0xjY7CNHv0hGjKMO3 2021-07-31T21:00:55+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml fNWKEZe2XVK6hi3TRFgtIy7s3hQpU3.k 2021-07-31T19:57:05+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml C9rz46Ew89E2NwPrXw.2tMpI0PcGXcGa 2021-07-31T19:34:11+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml gBCHyehOWRJkNhNUHaF5BrWuJ7AzW6Pf 2021-07-29T23:24:15+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml EAi_1TCdWqMIrFZ4PB6YKcnm.3fQGa6S 2021-07-25T17:26:52+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml jlFWuF.W1Wl3JvCdMCadkEvIk4g2494T 2021-07-25T17:20:27+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml oQJxs8vocdd_i_mIvNAx0E7k04cJH4Za 2021-07-25T17:18:39+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml nQAH1YWnRloCkywspy34dYEdWHLsA0qG 2021-07-25T16:36:08+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml v6KCbVwjK3XrW0QNPY13.hxeBJwif6ye 2021-07-25T16:23:49+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml RRpfdmH4BSTCHqam9iuuBnNQbtmNWCmv 2021-07-25T16:21:39+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml aH87FkRjJPzI_xl.YcnzTEHXzdxbghRv 2021-07-25T16:19:33+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml VOWeDRV146mssTlC0xnfnNkt1RSsnwgF 2021-07-25T16:07:14+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml vEV.DrJ_ZIf08oPKg_nsqYSLv1gfjfoE 2021-07-25T15:30:45+00:00 -aws-account-automation/CloudTrailConfigBucket-Template.yaml TkpnIqHUBRnkazeXuF4kNp3pztWPrMXj 2021-07-25T15:27:39+00:00 -aws-account-automation/CloudTrailTemplate.yaml X.a6DnVmHYaQwgV.RNSwmVWKYTi4NcYt 2020-05-02T18:18:12+00:00 -aws-account-automation/CloudTrailTemplate.yaml v_4T.DmgkjlUd2t9pZiEZviXhyEsMaLm 2020-05-02T18:17:03+00:00 -aws-account-automation/CloudTrailTemplate.yaml Qadp8UZ291kJpx_a7e7NTnh_GSTL1k1T 2020-05-02T16:55:28+00:00 -aws-account-automation/CloudTrailTemplate.yaml pTi7wacuOoHN7wo43iv.54DpYn63RKJs 2020-05-02T16:54:40+00:00 -aws-account-automation/CloudTrailTemplate.yaml Q0_IFXdgeV5d5FZDjqmAMwXGB4Ql4YfQ 2020-05-02T15:38:05+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 3URuF_gLuWr.uKDRvx1Ber1gjTRdHpix 2023-11-17T19:41:53+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml ywHSBiGGWUDI_3oKgNsYqKSD0f.ADNxk 2023-10-21T12:57:41+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml CeGyqmKa0ndwzeJDpMrs3dkSldp6Dure 2023-10-21T12:12:42+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml rwd5yZDNL0tao_tMhOV1lrFvGOWwGE_v 2023-10-02T12:30:54+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 1kxKO0Ks6WnSKT7bbK0spqSvK8G7ODqP 2023-09-13T21:28:08+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 6dh7JoLgwR2DHXjRh8CaYlPWjY.FGdCC 2023-08-08T13:18:52+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 7YNT8IIxUZyamIrKRBkXe3InRXs8o1he 2023-08-05T14:00:51+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml d5EYlq5Uge6u_G37krcR3eK4r7z54UL0 2023-08-05T13:43:22+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml jBG4qmkY99jTb1lBNLyk.ne5P8Dzgv9i 2023-08-05T13:36:36+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml FQIDnsyhFb4n6cDIztYfPs97wj_JMl7k 2023-08-05T13:32:58+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 95eu3jLdjUhvjd4suK_neDLGR0sNT3jh 2023-08-05T13:29:16+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml aP_pZSyJUaCS0PrAfxm7epEpf9Hv5G0D 2023-08-05T12:45:23+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 24_P.6PSvAFKgkT_kWOa_LaF8j.FulSe 2023-07-06T20:31:09+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml VSQ1wz4or4Xjl8xc_rIZmbfP.AAFSWrE 2023-05-16T15:11:44+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 89gvbe4LJ3ucPe6KEJ7Cuq_1qjNEktBd 2023-05-16T15:05:11+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 5seKLV_PBUa2RuGPffXrMbe7gTtuMy0Q 2023-05-03T13:32:03+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml IcWwmkJMqaHw6nzgm3GSSz6VCYWZXLHV 2023-04-28T19:08:48+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 57q.hv_Xg9pEZw0tSgsL0l6yhBE59h15 2022-10-18T14:14:44+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml x9XiVsiwhzjayU6cpExwZCJ5z.8xD0fr 2022-10-18T13:43:06+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml aHzByZdp_5AKflEbeRAEO99DBCsgBQD8 2022-10-18T13:25:31+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml AU1NevktiTqC4YdnSrdkaun7KW6Mw9ez 2022-09-11T06:33:20+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml GW.gm7BCLd3Iadk4M21EeSERftwjmqZ2 2022-07-16T14:33:43+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml T_M9CjYP16OXphr3vkiYXET1CppILWmT 2022-03-23T11:37:45+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml _aygldFgPnMTsxo7lpLOUGlM4eKBGZWu 2022-03-16T12:00:05+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml ZVwWjOySPOVE9QuP15BkAvOFz0s_qN8h 2022-02-20T15:18:21+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml V4x0lKFemkUZ4EE2Ux2D99EKadj5c8MH 2022-02-15T14:07:49+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml ur2WVaUJeeyVognUUwRoDWQjz7ZDGhFW 2022-02-15T13:23:29+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml zcMu7svqUJmbeDHkJ2Ie_Xq085T2KSzb 2022-01-15T20:58:19+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml FFoHMRiCEhsgvoDoatLQA0WCUAVRThjh 2022-01-08T12:27:15+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml BQyWVuRdqm9onIynHRYEe0CQWDZybevx 2021-11-20T11:21:56+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml kN0sZvhOcwwF1xXDkx66ztkLrTFA32EI 2021-08-04T09:52:56+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 5yemLgG2q4UVuskwuzzQOqaWiOqI9IhR 2021-08-03T22:51:09+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml qhZuTMOUvOIEdeokQxU4v11Frbl3n7Wb 2021-07-31T22:23:55+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 0FsqSa460.6erEPquAk3G6jFMZJSPQz9 2021-07-31T21:00:55+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 8h2d2y6i3vOxtkMD9FOKKn4pR4BSmKl_ 2021-07-31T19:57:05+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml i6kePKfHOmryIa06FIW5pfsYyg73xJmo 2021-07-31T19:34:11+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml Eqhx9.HcKmM3.l8A5i2p2tUfhzregBsj 2021-07-29T23:24:15+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 9eI7gfDD08I4E1UWWKwv8x7XIiKX.sKo 2021-07-25T17:26:52+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 6oSUaZNW8e47TmbIsnSBOs30ExaoR_Po 2021-07-25T17:20:27+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml qaXFn5LeYKeQq_TLxZJKTX3hkQE2bT4U 2021-07-25T17:18:39+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml gMWRIif2nYXN2sWndIOEdDVQ0bnNoSLv 2021-07-25T16:36:08+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml LTruQawJAx2b7Evk.yrzJFhvRJknQOzH 2021-07-25T16:23:49+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 468IN6OmdCD938hSMu4PYuE.fmrMhSAu 2021-07-25T16:21:39+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml m6RxWwUaL9n79W4nwiVLSKSGsCvRqHmW 2021-07-25T16:19:33+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml xdfq8YZq8sKHGA18gF0EvMbK806Up93I 2021-07-25T16:07:14+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 862IAMYpREsm3VsIg.gVyi9Qla1s.Qsf 2021-07-25T15:30:45+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 8KxX_QPg4KRwwijcFbx5JjBKyhZqtb0c 2021-07-25T15:27:39+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml _rTkvZaf.mmb4sbG1Ivt4.QIE9rz3L76 2021-07-25T14:34:52+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml ZiEoA_hqH3PSUpyz8uqwAAw.KuTa28wT 2021-07-07T10:48:52+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml HPv5Xg3W6uo6.rrTs8irUQpLcOsFsdS3 2021-07-05T17:05:25+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 2ZGtD2TkIxZk33E4LftcEQqvvwjgIsU3 2021-07-05T16:36:35+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml XTYqOOGP_KIbh3aQDUrSQFPvl4Ft42XS 2021-04-10T18:14:19+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml nzq5oXCrS9bv_BaVLLo7D.PluQSaM5px 2021-01-20T17:39:46+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml G0Nm2vVBr1wDIfZQnT62GgR2RSVzaxEt 2020-12-31T12:38:56+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml SfF0c4eVxUQbZCQuHxDdBJEAXYzSKXXf 2020-12-20T13:13:33+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml ez8AA6qBOoXwiIzTEDB7A8TZ9jZhOqJH 2020-12-20T13:12:06+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml m1FsUvo1LFIW0oiLK7mcmgk7q818Ym_m 2020-12-20T13:08:56+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml bZhoFn2U2pK1KG2GBdvLOyHfFENjGS4k 2020-12-20T12:50:35+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 3W4m05b5V3xyFFZjHNQtJ02wS0k6v2o7 2020-11-25T18:20:49+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml GLRJMpBcBHTCGsqMFeBJl3YtROA.nNXQ 2020-10-23T14:00:32+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml DruQVWM66kaHVKfo0Nx5HZxuaC4kqp_U 2020-10-23T13:48:36+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml pRvrvsjIDOoC7xARK3aaXMPibZdptlKj 2020-10-23T00:17:24+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml 0lSwa77bthtQxq3jPyPUde.I8TcnHBmb 2020-10-22T23:26:35+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml tNHYs8AGECmvTbOkoSqgF6C8BIu3kCFa 2020-05-02T18:35:07+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml uCGlkIB4xwR8gc9UCnhH8lWb0pBOA_MN 2020-05-02T18:34:17+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml aW.ACEbyr2FkLeRzVfOFtyh4GSv.PiBT 2020-05-02T18:24:12+00:00 -aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml O_wJWERliFHL2IrtcwTYL077q9qeKiUE 2020-05-02T18:21:11+00:00 -aws-account-automation/CloudWatch_Alarms_for_CloudTrail_API_Activity.yaml qV1Y3TDs6sIlQ6DZZnRcIILf13FtyitI 2020-05-02T18:18:12+00:00 -aws-account-automation/CloudWatch_Alarms_for_CloudTrail_API_Activity.yaml F3eo1pysIt956CQOL6aei9lzdw7VtAGz 2020-05-02T18:17:02+00:00 -aws-account-automation/CloudWatch_Alarms_for_CloudTrail_API_Activity.yaml Qu4xH0j1XR7WZys6vu01.N5.VeKnCiUL 2020-05-02T16:55:28+00:00 -aws-account-automation/CloudWatch_Alarms_for_CloudTrail_API_Activity.yaml 1hrf4ZN6ED7PxZT7kMbKBpUTVveu5bsC 2020-05-02T16:54:40+00:00 -aws-account-automation/CloudWatch_Alarms_for_CloudTrail_API_Activity.yaml SCITPXiSTVd4hj6OAR7ZA_0Za8U3.byY 2020-05-02T15:38:05+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml l90FYqxKw7IU_Tmve48xenhVMsTbWXR_ 2023-11-17T19:41:53+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml 4xJGmGR5h.cR5NtPogYbn_6PZPWlKQMY 2023-10-21T12:57:41+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml JVLTtr7YGDBexRzmIsGsIaTs59i5gd2H 2023-10-21T12:12:42+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml .zRnvhYHyF9IwB9LPTGAIb6Z.GaB1BH4 2023-10-02T12:30:54+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml BuURrOZE7JHmb3IFr9f3aMR9sGOyp4cS 2023-09-13T21:28:08+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml ZGzSng6uwhiK.rG1g2fr7Xd.urMWy1q0 2023-08-08T13:18:52+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml LsPkQEIFvgoB22SwSzI1CuVx_9Rfo4ly 2023-08-05T14:00:51+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml 1NLNvAjX7E50ImbtM0IHITZxmi6wr_iP 2023-08-05T13:43:22+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml Y47zKBA9NyYNaqywcrNek5Ggh2QywY4e 2023-08-05T13:36:36+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml GVdI77IfIiX392EcFfxOTrT.G5k2oGwO 2023-08-05T13:32:58+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml IfJqsEtOde64rzcpL7j9DOEBUJtf.e7S 2023-08-05T13:29:16+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml .LGxPnFO2HHRPVCA_FliGtSIFFlEI26z 2023-08-05T12:45:23+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml 5K_PJ_G5VNJRIjsH3Oi37lJauFt.J7gb 2023-07-06T20:31:09+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml fJ.iEcVt0UKDYCkeQWmoFA5nfOB1mPlP 2023-05-16T15:11:44+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml jqeUfJuxA45Snp6Gqu6T4TqSV0wb9jYV 2023-05-16T15:05:11+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml qblPdgS8Oca9TL4vc.s2Rgt_HFPqdFYX 2023-05-03T13:32:02+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml SftJE5RMS4Osxc_7dXuo4lgxlW5zIZl8 2023-04-28T19:08:48+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml FYKtaFjQOK9.KFIuxklaJAoGmuJ.ewDT 2022-10-18T14:14:44+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml kcnASnljyUdbck6FHlCRQBuiEwXnRb63 2022-10-18T13:43:06+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml JqGGkM2ip9KEmVZccukWeyPc2Pd68njD 2022-10-18T13:25:31+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml r5hHf9rBLETE1Ouv.5gx3FUcKKADFx55 2022-09-11T06:33:20+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml c1gmeUCgghmvlSTwq.bvAZj_k.REYHce 2022-07-16T14:33:43+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml hx0RTMzDk19sMXuscIlJM2jB6ocYWM0x 2022-03-23T11:37:45+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml xQfMkL._bf8hzIC51vkY4gAFfa7r9l2m 2022-03-16T12:00:05+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml LOq8GzEqSB93boHo6eRDAfLirvqzsnb2 2022-02-20T15:18:21+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml pyBkHlgA3a8Ssm0hBRUlKKuDOYo2gRbX 2022-02-15T14:07:49+00:00 -aws-account-automation/CostExplorerAlerts-Template.yaml 9cORBxGQKcoP_xkhB8il4BIP1pZ.W1it 2022-02-15T13:23:29+00:00 -aws-account-automation/DeployBucketTemplate.yaml 36qk9I8E.uD5BSNF.r7uj0qLcLpGJh4V 2020-05-02T16:55:28+00:00 -aws-account-automation/DeployBucketTemplate.yaml vpr_KVt5AUmhGz.DETpbGKZ_jWoNn4BA 2020-05-02T16:54:40+00:00 -aws-account-automation/DeployBucketTemplate.yaml j0lib.gBIbhK_m_RZpZb96rTQ3ZV5MN5 2020-05-02T15:38:05+00:00 -aws-account-automation/EBSAutomatedTagging.yaml imf_SC2NeEwe4fTBjqqZJQJaZfq.0GR5 2023-11-17T19:41:53+00:00 -aws-account-automation/EBSAutomatedTagging.yaml 3NkvSmImrP5BtUWsB9.IsE9a000lYdqX 2023-10-21T12:57:41+00:00 -aws-account-automation/EBSAutomatedTagging.yaml mJIozwX.5Ou4EEXwvfhpkM.8FLnuVkda 2023-10-21T12:12:42+00:00 -aws-account-automation/EBSAutomatedTagging.yaml JEBcbQ8Q100b2VhW9CIS_nq1eTXKErN3 2023-10-02T12:30:54+00:00 -aws-account-automation/EBSAutomatedTagging.yaml ag3SWMHrSsrnRhh4OSiFtFYp54zGVnl6 2023-09-13T21:28:08+00:00 -aws-account-automation/EBSAutomatedTagging.yaml pXZK_WoqnsHpuDR3m5pezzeycVASJ.n4 2023-08-08T13:18:52+00:00 -aws-account-automation/EBSAutomatedTagging.yaml iGkHyYDdG3_uHFU8FlKt.t314oN_Ar1z 2023-08-05T14:00:51+00:00 -aws-account-automation/EBSAutomatedTagging.yaml YMPnHX7pO6ox1ckMDNGaJfOT7PQ_8nLD 2023-08-05T13:43:22+00:00 -aws-account-automation/EBSAutomatedTagging.yaml Upx5v8hSd87E1OVV2BzPHxYyUV07OpSU 2023-08-05T13:36:37+00:00 -aws-account-automation/EBSAutomatedTagging.yaml yeLTC0E8_Us7JvqtHy8fkhabsF1Uh4U0 2023-08-05T13:32:58+00:00 -aws-account-automation/EBSAutomatedTagging.yaml _99Kej7nUg7q9JrFg1DXtE_iqsJ4JMaJ 2023-08-05T13:29:16+00:00 -aws-account-automation/EBSAutomatedTagging.yaml DM_SG9a0sfvnrYC4wAcqps.uyWEQcKwe 2023-08-05T12:45:23+00:00 -aws-account-automation/EBSAutomatedTagging.yaml nhF24ET.fr8s719FehhnGsuMeXXPZD5y 2023-07-06T20:31:09+00:00 -aws-account-automation/EBSAutomatedTagging.yaml JNXBTG9BG.UpvZvKEY27Ab.B3P4qOFJm 2023-05-16T15:11:44+00:00 -aws-account-automation/EBSAutomatedTagging.yaml 3epOSSYrzFWj.gXH.q48wCtIBrC9ifTG 2023-05-16T15:05:11+00:00 -aws-account-automation/EBSAutomatedTagging.yaml G.vqbHkOYmHRqeh05v4_TsZ3bqBwROsx 2023-05-03T13:32:03+00:00 -aws-account-automation/EBSAutomatedTagging.yaml YjvucEa9GLHSnG4klExrOYi0nrASeOrM 2023-04-28T19:08:48+00:00 -aws-account-automation/EBSAutomatedTagging.yaml 0vnlrvumd1IwMwhcArLCPSQsQk_ltKXi 2022-10-18T14:14:44+00:00 -aws-account-automation/EBSAutomatedTagging.yaml 2ev0za29lpQuMzBzv1kb9wSZXQsLZaHq 2022-10-18T13:43:06+00:00 -aws-account-automation/EBSAutomatedTagging.yaml J7c6EGufKPdHkg2G7zXzGsu4I86dJI0C 2022-10-18T13:25:31+00:00 -aws-account-automation/EBSAutomatedTagging.yaml zlqSrmS3ZVhaJ0x8QpN2yK1gqR1uIkti 2022-09-11T06:33:20+00:00 -aws-account-automation/EBSAutomatedTagging.yaml _xux9tEM5Eaq1axsJeYGvfOOlO4dZ0gk 2022-07-16T14:33:43+00:00 -aws-account-automation/EBSAutomatedTagging.yaml iuiTpLn8gca1rdctGsgFXuLYNCNgb.n2 2022-03-23T11:37:45+00:00 -aws-account-automation/EBSAutomatedTagging.yaml m5Y0VSVHzjTsT9Ea86T69CEvXqouJYrB 2022-03-16T12:00:05+00:00 -aws-account-automation/EBSAutomatedTagging.yaml SVJcnoMMEoJukfbzQMhUJmysnsJP1AVp 2022-02-20T15:18:21+00:00 -aws-account-automation/EBSAutomatedTagging.yaml KAz0iLvByokzYNLE.GlfgxJSYZ6B9Re5 2022-02-15T14:07:49+00:00 -aws-account-automation/EBSAutomatedTagging.yaml hUsaJv1K3nC0OMZJM7XSKDiTYJSHlmLQ 2022-02-15T13:23:29+00:00 -aws-account-automation/EBSAutomatedTagging.yaml ElmSwXRZCKMHz6i0lPzuSGtUphSwMUfA 2022-01-15T20:58:19+00:00 -aws-account-automation/EBSAutomatedTagging.yaml spsCNUpq62z7b2agbFDLgclow0ByxGBK 2022-01-08T12:27:15+00:00 -aws-account-automation/EBSAutomatedTagging.yaml kzdVTZhS_TPHTIQLP8pnhjBqwLSOHnJO 2021-11-20T11:21:56+00:00 -aws-account-automation/EBSAutomatedTagging.yaml KzGg8eyVT47jFUEL8Z5inYxnrNHPoLrp 2021-08-04T09:52:56+00:00 -aws-account-automation/EBSAutomatedTagging.yaml DL0QnkUda85XqGodVeKqx2HAp4fIdi8E 2021-08-03T22:51:09+00:00 -aws-account-automation/EBSAutomatedTagging.yaml tdymXjE2HHfI7swoW5JyJFILD_pa5n.h 2021-07-31T22:23:55+00:00 -aws-account-automation/EBSAutomatedTagging.yaml Dz2W2P43eiFzn6hNsqnG2fk6mJR82SQa 2021-07-31T21:00:55+00:00 -aws-account-automation/EBSAutomatedTagging.yaml o_9mA4LywNZcjnyApBqWxZKnodUecHTZ 2021-07-31T19:57:05+00:00 -aws-account-automation/EBSAutomatedTagging.yaml 8W0eHkLqB8veROvovv03E3tCfDQq5OA7 2021-07-31T19:34:11+00:00 -aws-account-automation/EBSAutomatedTagging.yaml Ah91AYSINQhDMicB8OZYNG01NkKJYZtc 2021-07-29T23:24:15+00:00 -aws-account-automation/EBSAutomatedTagging.yaml .aP_ez1G91xd6CkajMfsWvPNUhgtVUf4 2021-07-25T17:26:52+00:00 -aws-account-automation/EBSAutomatedTagging.yaml nN90qxrdoJmpOyXRkwd1JRnwY4.pFfXE 2021-07-25T17:20:27+00:00 -aws-account-automation/EBSAutomatedTagging.yaml oP3IHP_Y3benEX0hMW2U2tKhTKIWG3tC 2021-07-25T17:18:39+00:00 -aws-account-automation/EBSAutomatedTagging.yaml gmZuTKWez9Ar7vxp3DMSt8vRMclY1TyW 2021-07-25T16:36:08+00:00 -aws-account-automation/EBSAutomatedTagging.yaml Sqt6l2bg3jNcNl_S0w7jdMBnme5QtoR8 2021-07-25T16:23:49+00:00 -aws-account-automation/EBSAutomatedTagging.yaml taq4RQ3he0asypiPDz0.odSaf3xrv2rX 2021-07-25T16:21:39+00:00 -aws-account-automation/EBSAutomatedTagging.yaml NmH5eFE.gGWDQuthtxLQKrPBmpcCEdTC 2021-07-25T16:19:33+00:00 -aws-account-automation/EBSAutomatedTagging.yaml 5ho9AdGmFeIfnhEsCckYr_KtSonm.vCu 2021-07-25T16:07:14+00:00 -aws-account-automation/EBSAutomatedTagging.yaml kC6coOOIWDgWw9mjrRsT8mtX_nZrEePp 2021-07-25T15:30:45+00:00 -aws-account-automation/EBSAutomatedTagging.yaml Jhc35cN.JniyILJa22ZRY6Ij3gLfPUSY 2021-07-25T15:27:39+00:00 -aws-account-automation/EBSAutomatedTagging.yaml 5eYovSUiC9IUoj3BAXOLCddkAEYIZX9y 2021-07-25T14:34:52+00:00 -aws-account-automation/EBSAutomatedTagging.yaml cvVuK.ptJGocEoSxYsSNlZ8XQxUEwCHn 2021-07-07T10:48:52+00:00 -aws-account-automation/EBSAutomatedTagging.yaml 6IWklYcg1Tg3wS.tW0JUZ1sc.54eEKOw 2021-07-05T17:05:25+00:00 -aws-account-automation/EBSAutomatedTagging.yaml XSlTRLn7TofP_OgeVjYI33nwWNyjr824 2021-07-05T16:36:35+00:00 -aws-account-automation/EBSAutomatedTagging.yaml 7MUqwLN4n9S47tRY8.T6h_1c8nEichz0 2021-04-10T18:14:19+00:00 -aws-account-automation/EBSAutomatedTagging.yaml EEL_kI_8.3EFsvPPlJ9yk4aYSm3xb8Ar 2021-01-20T17:39:46+00:00 -aws-account-automation/EBSAutomatedTagging.yaml IXfP7koogra31fgAAdMLRx1hgmlr1phW 2020-12-31T12:38:56+00:00 -aws-account-automation/EBSAutomatedTagging.yaml E5GGOemCFguoZb58dhTb142iEbmo4VIt 2020-12-20T13:13:33+00:00 -aws-account-automation/EBSAutomatedTagging.yaml wtseq1_m4HWOPrxD347JI6GkL0n4Qi.C 2020-12-20T13:12:06+00:00 -aws-account-automation/EBSAutomatedTagging.yaml 3DbUoyhXeRqhCWaSHWD2k0LiXGPqOXq3 2020-12-20T13:08:56+00:00 -aws-account-automation/EBSAutomatedTagging.yaml wZHLtjh5VQo3m5BovUXrvoIZgdJTb.DW 2020-12-20T12:50:35+00:00 -aws-account-automation/EBSAutomatedTagging.yaml MhehvI6bCDWJSlgPuRpuvAlb_hJT__Gi 2020-11-25T18:20:49+00:00 -aws-account-automation/EBSAutomatedTagging.yaml MH.dpK8pggDmKS4hReBgL6ZW2MYGmFW_ 2020-10-23T14:00:32+00:00 -aws-account-automation/EBSAutomatedTagging.yaml xzWxwfI9A9vSzMkljXNfW.cscVk74eMK 2020-10-23T13:48:36+00:00 -aws-account-automation/EBSAutomatedTagging.yaml qFcUDpBqc3oc3FhxpA9g4JgmFBa_mWxF 2020-10-23T00:17:24+00:00 -aws-account-automation/EBSAutomatedTagging.yaml grA_dj9jr6jHlu9ltEazICEBWs1EE.Yr 2020-10-22T23:26:35+00:00 -aws-account-automation/EBSAutomatedTagging.yaml CD2tjoANWHTqWBYvLQgj.C4ptsx.DCyw 2020-05-02T18:35:07+00:00 -aws-account-automation/EBSAutomatedTagging.yaml NmyaSlX5wfXRAhf2G4bAwe8l254ZgMcF 2020-05-02T18:34:17+00:00 -aws-account-automation/EBSAutomatedTagging.yaml iOdtCCHp82UPKkcznoTVWRc69rt_4M_X 2020-05-02T18:24:12+00:00 -aws-account-automation/EBSAutomatedTagging.yaml EcwT2JSpzP69S2GTE6GflBTKqG9Po7nR 2020-05-02T18:21:11+00:00 -aws-account-automation/EBSAutomatedTagging.yaml ka4Dh7..rhcCSiSW3a9TnuEgymXofKJd 2020-05-02T18:18:12+00:00 -aws-account-automation/EBSAutomatedTagging.yaml 43Xq76yoo4T24GLTXhuFhSWsksttlPE. 2020-05-02T18:17:02+00:00 -aws-account-automation/EBSAutomatedTagging.yaml vjnC4EJWmCvBMsb5jKetxb1Hj5Fd62MN 2020-05-02T16:55:28+00:00 -aws-account-automation/EBSAutomatedTagging.yaml 4DjAGrQLKwMkwl4I0corDM_zapY63jBY 2020-05-02T16:54:40+00:00 -aws-account-automation/EBSAutomatedTagging.yaml Q873MrEDkKLMR0xltyFhz9UzNUtpH2OH 2020-05-02T15:38:05+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml 48L9Ai2Y3IDNaVlRKUkvIyWJn.QY1U4V 2023-11-17T19:41:53+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml 6fxllP7kcXQPcYRTWwS7fMqQkx1Rat6Q 2023-10-21T12:57:40+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml HY9i9Uf5kF_78IDvdycezY7usCYyBnzi 2023-10-21T12:12:42+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml DYdfWodw_Tnbh.vRM5bWABxja6X3BV99 2023-10-02T12:30:54+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml A6KEGwWDq_hq.1Db7ZrIJ5.i.BCda_05 2023-09-13T21:28:08+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml 08KK_bIkBIkIQ64TGD5Qv2DJAcHCTxkc 2023-08-08T13:18:52+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml 1CX3obSplHYNfIzM5mdejTyg9TL4zwS. 2023-08-05T14:00:51+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml xfGBD.I_nbDDk6PKPXVvmX5jGIER_38Y 2023-08-05T13:43:22+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml ORovu2hC64RudScJcdDDcAoSind6Af25 2023-08-05T13:36:36+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml CgwPLEEIrLk18ePMrJylqRx8aTtvDIwD 2023-08-05T13:32:58+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml yH0VZjc9X.p.hZ0iz3OvPeB3_2NK16sS 2023-08-05T13:29:16+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml j5eV2Fx7NjY7eAtrtN4.sJqil1IWDake 2023-08-05T12:45:23+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml q9dMaLr_ZNCfeoKqj8t_BewfB.8cFVlP 2023-07-06T20:31:09+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml T9Cggch1u3ftNNdR9y74v8WUImyV1NZb 2023-05-16T15:11:44+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml Y.r.DF8KpQLb45hkuKwC5l5mXZ9LyCX1 2023-05-16T15:05:11+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml tmnpCbysOeGFYSE9tYMzwfiR_6zTSFi7 2023-05-03T13:32:03+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml tVlfRJDpfVnyphTLZh36UxgLl80PnVbU 2023-04-28T19:08:48+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml iwBB80UdY_.F2Br4e.0OnTv91aCRaDHA 2022-10-18T14:14:44+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml OVbTvxlUqLTVmj68KVpzRXu0kNRhqqN4 2022-10-18T13:43:06+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml ysCL4RzMRoqiJ.S_S1U8hVYYEIeUIHvN 2022-10-18T13:25:31+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml oKgALx74Uz9NTlEr1sVhIMBnY_OyLVC_ 2022-09-11T06:33:20+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml T4qYdjBe4jZ5_h6NRBt4apXLgWlQxRos 2022-07-16T14:33:43+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml pyCdpWo3JXnziOV1UilehA1DIj1wKMIt 2022-03-23T11:37:45+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml R1QiPvZGMhg4j3FOxiDtJP0vbmAmcDel 2022-03-16T12:00:05+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml N9B_fMZbF0agYxIu0coxYijH0.NbPCuv 2022-02-20T15:18:21+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml 30iqFcRY2fGzjeNK2SNTjYpoAeSLwq0L 2022-02-15T14:07:49+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml RcXRcx0LLaOrw2NuqlZjBKPHuaZiXRPg 2022-02-15T13:23:29+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml hBp_nfwMB36Q7byR2EVvSWaU9_Z8pMIS 2022-01-15T20:58:20+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml vXEXdzPcwI48FWsSPY7.Qg0NWGXtn6AL 2022-01-08T12:27:15+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml Pe1YSwdewkYzG49y3ej3BDrKw4cxxvBi 2021-11-20T11:21:56+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml 8fdpmKf4kN_f0KGZKMqARGaLOnfi7zPP 2021-08-04T09:52:56+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml XXGwmwGP2tfIgXOoVphziO97DbLCiR0H 2021-08-03T22:51:09+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml DLRdt08uToGwy3m3nKycC8qstQf9XgQ7 2021-07-31T22:23:55+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml Td9peOdGxN7ZIXSSQF1LrgCnyswhGwoS 2021-07-31T21:00:55+00:00 -aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml o9BnnFP7H0rIAXroEz5Gg9PfRaca3slC 2021-07-31T19:57:05+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml xMCdGJhs4oHo838DecmEsbi.Zei4B1ND 2023-11-17T19:41:53+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml GFmo9I6Y9.cO3jFiDFxkkQLXqj6NiPB7 2023-10-21T12:57:41+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml CbSr5rYDuGkvE7QrtbwkTLp8uNSUR.Bb 2023-10-21T12:12:42+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml Pu7aYi6.4.FEK1m4cpe5sg20mdiTl.NE 2023-10-02T12:30:54+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml 0dQRu_u0ORihC73JO3aVbKRqW5ZTAZqy 2023-09-13T21:28:08+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml XXcdi9LIj743z31zL6a7UvKbfC9l680f 2023-08-08T13:18:52+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml 4qhnKpprP5USiyeWIFsL0y97WCc_E7LA 2023-08-05T14:00:51+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml ex1vXkMwNH3LP0bUWuDbwhBkIkEkBFt7 2023-08-05T13:43:22+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml FDaPWqgcfnYNJguV7wCCJ3GVgfbcFTuX 2023-08-05T13:36:37+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml A.oLAqISaLFlWGGK9MLDMR.oF1gQMRj1 2023-08-05T13:32:58+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml l2Fb.15qw76meqNr8uFc3kVOkflHbgK3 2023-08-05T13:29:16+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml WCtQNXgFMCOS4_entdJRZ6cicQ1e5dEA 2023-08-05T12:45:23+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml CDHOs7m0kissGymcwJOOW9JkiksgDXbG 2023-07-06T20:31:09+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml bHe8sEpK2mLWIk2C4MK.hZV3lOmpzeaB 2023-05-16T15:11:44+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml s.TcIJOyWuIzjAOYAV9lPVlF8JmJB.jm 2023-05-16T15:05:11+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml d21D8uQD8kvaEuXlsagilrM8J5l1xp7S 2023-05-03T13:32:03+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml LTVr_yZGi7WwI9GY.ljXwA_iv4.21kO3 2023-04-28T19:08:48+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml yl4qMp3rfv40Hu35l_2HigY8CpkUOd4x 2022-10-18T14:14:44+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml o.wJP_eFhIfv5pDF87ghdDsPZ2vJWg6G 2022-10-18T13:43:06+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml WU_IoEoRESQqgjCotvJA0Y2K2z2rRyjE 2022-10-18T13:25:31+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml yX.dbANYqliEuN.ymgiAL7mAY.1A6LOO 2022-09-11T06:33:20+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml 468sI8tDZ_v0cy_g5aLYUca6LV9dTUSB 2022-07-16T14:33:43+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml .OP0zZRcknXJyhzqZQ_2FW1I4mRMrk6z 2022-03-23T11:37:45+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml aNFoup5tLyTHIsOGGqgF2o25DxzkhGZu 2022-03-16T12:00:05+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml LJFzx0TgcVMO.pQzQptNrWupcbK8Dg4u 2022-02-20T15:18:21+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml xqHvmdtWPNJSI5VaHat1bvKdrCfo1lD8 2022-02-15T14:07:49+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml NCAGLTJH3z79L7kUk38Aw0PQNhE0851o 2022-02-15T13:23:29+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml GS_e4uasbxznsEdCGGQbAMKrgWOB3vPC 2022-01-15T20:58:19+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml tLku1vb2xVOyaeNRljXSvqX2wa88dqRc 2022-01-08T12:27:15+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml 31pOEN5fJp3Zi7eSb8yxScRs9IIDk_qn 2021-11-20T11:21:56+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml 8iuJVKVXccAECCriGyChBgxxvqa5DwId 2021-08-04T09:52:56+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml zCcp3hh7QMxYCsf.8PGMhIFLLp7dTxhX 2021-08-03T22:51:09+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml 9gnKq7KOtrOKID.8OCd9zNiER47_YW4L 2021-07-31T22:23:55+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml Ps98lR0TJZx_TUKEtty46LuZYNoPFnye 2021-07-31T21:00:55+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml sfKLGTkescCbvJfUqQp._HRBw4V3HXty 2021-07-31T19:57:05+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml q_ishYQ3aA1mbOS27PTHDM.B7sEGHdMs 2021-07-31T19:34:11+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml 19wO5tjUUVT41qzn.K8_fw3c9uQn.srT 2021-07-29T23:24:15+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml Jl62zfI2h5PpeG6B4ZUoYODAS6CRnIS9 2021-07-25T17:26:52+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml v7nLyByF3XjKMtZy5WXpGp1kB3pfxylU 2021-07-25T17:20:27+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml 60y7.cFaJRhX1MoWlGIjYmBQzTRI_E34 2021-07-25T17:18:39+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml avqWvVH81Xs__PQ4JGTrm2ZKM7IIIzNb 2021-07-25T16:36:08+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml AsE.NMnk8pZaMN7vKd4W5DkxkaViMtBo 2021-07-25T16:23:49+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml VsBn0_8qVHkWwOrl4ZjAGj.qpblBUp2B 2021-07-25T16:21:39+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml GtJqZXcYFzCdtSbYkmHuzqFElGEZWCXq 2021-07-25T16:19:33+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml LqPnMUlq_NbZulk39hNiwcQnIdWc7bZu 2021-07-25T16:07:14+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml aKpmD9s5INVa8lYFvyOw3TVjH9DE3Vvm 2021-07-25T15:30:45+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml 0tvRNFwPsJLiSBIkH6pQP8c.uRgdzeUW 2021-07-25T15:27:39+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml 0SsQiO.0ZT7yRiN7Y7Hz1vUfYdZttd3U 2021-07-25T14:34:52+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml _YaWe9NtqWJnJz_9h3qs8pSZatHNZ8Zf 2021-07-07T10:48:52+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml qwWMV7HnyGUWJO6KgzHaWVWmbmJNlldF 2021-07-05T17:05:25+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml qqU2oZ1RhmHVrYbBX4_NuKhKhacz.rXp 2021-07-05T16:36:35+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml 19tWjgTXt2wRerqoIKZPNJNM9f4rx9mv 2021-04-10T18:14:19+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml n439dkEi3RWPuZiAqfupm3ZS8D6z2bQO 2021-01-20T17:39:46+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml M262xORPiZcvxyEuh_71pXpgjXKI6BY_ 2020-12-31T12:38:56+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml auDFI4sBJ3A9HuUwuAyhCZoXvkI2MFR6 2020-12-20T13:13:33+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml KasRjCoH11BrJ60tr9rxcE3Bdf26KFk1 2020-12-20T13:12:06+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml .k0UPp6cam4NWglisgxGg2r6XMre2Dal 2020-12-20T13:08:56+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml dAfp6YwnCMmibMgM9wWihjoYYuv1yh5Z 2020-12-20T12:50:35+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml eQ6AsZnoDDcuzUi7XZ3zcryVy3HYWnZW 2020-11-25T18:20:49+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml XRQKbdZswcZ8m.njefvbVjm8GEGUfskB 2020-10-23T14:00:32+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml NfbS9RZ2jh5MH6YiFzxQAqPm1iDDiIWy 2020-10-23T13:48:36+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml qjE0WRRkh_u_0DLHmtsJyImxmmyuu0Cn 2020-10-23T00:17:24+00:00 -aws-account-automation/GuardDuty-to-Slack-Template.yaml At4mHKQxEZa6_KFuzEbkFsIO9vedhmWe 2020-10-22T23:26:35+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml qGzL5.7ZwEOLFpv6qKf0SvxIaCEUgfM3 2023-11-17T19:41:53+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml 25OJggcllwu.s5yZrGq1tNLQxMihp.Yf 2023-10-21T12:57:41+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml slp5U00Le50hsz2ftow_EnaMjN8JTdiZ 2023-10-21T12:12:42+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml JS0Gphy8FIKWTONmEscsKH9cwenTnd0o 2023-10-02T12:30:54+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml .vthBMiovcyMo89MLyqweEhuBs5CcLMY 2023-09-13T21:28:08+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml 9kMNJJI56ybNHCzwk_G3sZn5BzuQS2JS 2023-08-08T13:18:52+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml dNt5ftfNvm359NR7EM7Et7caV9y3NqIa 2023-08-05T14:00:51+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml 2K6vHoQMEkFHjnBzXGktxy2HmXCVAhoW 2023-08-05T13:43:22+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml 1KLm5l4CFHF8QkFfq0iZzI557PYGp8Mu 2023-08-05T13:36:37+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml CdVFq_bZJBDOkG5eM_.SymEDB.QeHKj_ 2023-08-05T13:32:58+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml Nx4H_vT3wruETFr30ImGfMs_A.mfRjr. 2023-08-05T13:29:16+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml ouzqYQCpHRjjEePpkMCxNCXP4Vc47Xqn 2023-08-05T12:45:23+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml BB_HFxhdUdyqQhGV.kIBlgZdL8spIN3I 2023-07-06T20:31:09+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml 5va9ZUQ2uKhb2LERtAlUeSbQNU5SwL9L 2023-05-16T15:11:44+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml _ghMNpmqL9MUKNeL_waCVtCZPWVMCBTC 2023-05-16T15:05:11+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml hxBX3vLUpQJhQRjoEoCOJsofFR0azctM 2023-05-03T13:32:03+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml uVrJo0BNGk9Gn.wECNhUDVQN4PD7LLkS 2023-04-28T19:08:48+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml P77q2h5jHdpTKtcFV8xX60OUZJnSDmg8 2022-10-18T14:14:44+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml s0OsxyQEmI4btljivMx.Kp3tkYBleYGn 2022-10-18T13:43:06+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml 4N3mamqrXkcy4lQrraQrYNxKH6elLXQY 2022-10-18T13:25:31+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml bqnaoCA4TrMkKJmJA2EkOunn3lZX6yPQ 2022-09-11T06:33:20+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml a70guLsElvatUQAgGuL46IN_buPcz0Rw 2022-07-16T14:33:43+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml ThoudCYcAw_d0WqI6xMrJz.SYTk5.WHv 2022-03-23T11:37:45+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml Cwi37i5Y7qOWmCqfXdLCwfZHXtd_oZnV 2022-03-16T12:00:05+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml FJKVgc7wXcVLri3mb6Y5Slf3zZ2o2zsJ 2022-02-20T15:18:21+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml dodIq3biQfDXyFFO4osm0tqSc4W1YZlh 2022-02-15T14:07:49+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml 2FnEuWOlYlpg2tqqrhjlyQuHO3BjPMNK 2022-02-15T13:23:29+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml TUCsx.QPv09JzU3xZRRCFqxUe7GdVNsd 2022-01-15T20:58:19+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml YlFoEcj7TMnvI4yYK0sJCT_Hi3bsM2_i 2022-01-08T12:27:15+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml DKpilhayj1Z13aS1ioZNv39yc0Vsozc6 2021-11-20T11:21:56+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml geKSCxFav.1fhBUTBJCanWrC71ah1Wxd 2021-08-04T09:52:56+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml ljxK8I3ucfXVcNSbzewwRJOypAmhNSgB 2021-08-03T22:51:09+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml hbZNFBuoV3dmq3I0LKW_dKYga_Bvbn8q 2021-07-31T22:23:55+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml nudtpaWvAA1jAwiamD0pN9KoG0s09yk8 2021-07-31T21:00:55+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml C91qBEYDCeNrUGmwaNZQzdsqaQf6bbBy 2021-07-31T19:57:05+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml gk6tobAtQWDBJopQoTYXjE9q8YdSkipw 2021-07-31T19:34:11+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml aGbFhfaFFTE.cvF_1zMN4.gm_cgN28K8 2021-07-29T23:24:15+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml TZ8XVOjOap75RmdtqI7EA1uL1WGD3949 2021-07-25T17:26:52+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml vbGSZ16Uebuk6rEF.N_SxXL4Oz3l6nGZ 2021-07-25T17:20:27+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml DeYiH_wm.rILdJHTChXVq0iDLFxjVcn. 2021-07-25T17:18:39+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml X1SryDkDwGCutbXEfD9AdUTc877tg2Zy 2021-07-25T16:36:08+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml C_TgxJvqSsgoCWwgtbLC4BaShpFbBvqQ 2021-07-25T16:23:49+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml 6MZJ7HDx6ziD1JmtQ2RkV9BaufV6A229 2021-07-25T16:21:39+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml 2llbUk68vaVVVjmSAnfy9C2MbuFGF.0Q 2021-07-25T16:19:33+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml rGEXPpEcvRdhg8Po.hpEFRtTjRGs2akD 2021-07-25T16:07:14+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml YK2nk1Sag2afbnU3kWb433duWXxXNn07 2021-07-25T15:30:45+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml aElZvV2aFCokzufMuIrRrCWkR7g9NFhf 2021-07-25T15:27:39+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml rRU_rPqRCNLfuUj3H0W0mG05f_Efuyxi 2021-07-25T14:34:52+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml roE_t5rSlDuaIi.dXrf41H4KIl7.hteX 2021-07-07T10:48:52+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml kXe_uU2jMTa1ZCRHc_MD5s__N3ObgnOs 2021-07-05T17:05:24+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml 5dblCB2iazXYC9tUNdInmH0dYXnTSGvv 2021-07-05T16:36:35+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml TuCArF7rIGRNDA0wXilbGNEl2giyWz8O 2021-04-10T18:14:19+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml OjUo9yUi4uWAFtf9v5XfCjst5qmqa1YI 2021-01-20T17:39:46+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml 6KooVgUCXDF6USLBTGkVblr06gga36wq 2020-12-31T12:38:56+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml SgpGjqFz6epBE_TNoEFfshqw_kg0DtJE 2020-12-20T13:13:33+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml aLbfEYll4UlxtREqoFMv9ZaCFL2EkxJt 2020-12-20T13:12:06+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml UCt34IngD7TZcC.zBmCmPCAVxKGqePmW 2020-12-20T13:08:56+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml NWqa7Fe6aU9bZ6Hw2upG5SpD0JqzpS7k 2020-12-20T12:50:35+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml t_GoRuJeFWD_9mkTUb4X38TmpNvTncnU 2020-11-25T18:20:49+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml xcL8LlTHyvsVWwspHCjsGUgV3vhWQXYy 2020-10-23T14:00:32+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml X6.m.8wQ.P0ueGW8Fkwkx8C9cyI6iAL. 2020-10-23T13:48:36+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml C._KD2hfyuqCn00fvRfMv82ykrdS9w7j 2020-10-23T00:17:24+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml r4af9Y1coB2GSqQ5Wf1yopsPZxhgVvMl 2020-10-22T23:26:35+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml Lmj8mX2vcYzqbzqShKHzHqQOKF24ZLaW 2020-05-02T18:35:07+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml JmVvd6TJjTslKbtsMcUplYkTsLHgt4Cf 2020-05-02T18:34:17+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml B0xrdFJxrbG6vlzw3_iVF6F09Ccocz_R 2020-05-02T18:24:12+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml EgYmG1jUoulY8bHe2LPTTvNCtOpYXu18 2020-05-02T18:21:11+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml F4y6Rwo.UvUT42d2DeGVOPTDk9d0EgWv 2020-05-02T18:18:13+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml K9deDhAKQ2fM10dS9OvjsXBEQRDy3BqQ 2020-05-02T18:17:02+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml 0_D8v0C2JCI7HQ8BJeDyXVCh3UXKO2.z 2020-05-02T16:55:28+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml WZnusvzYr3EnKbUKTP8ZmMeluk_j0mKu 2020-05-02T16:54:40+00:00 -aws-account-automation/IAM-ExpireUsers-Template.yaml Sh32lvoebQJF75svsG1Cfb5uTXyO68g2 2020-05-02T15:38:05+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml hWoD_1VSlzEQX6S435f7cUq8J9FCyKy8 2023-11-17T19:41:53+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml IHX6mdq2kYJZoCctsSrtXS1x5Y0eXTt2 2023-10-21T12:57:41+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml gecNYha2Q2RWIL3etFPnvygxHRSXYalf 2023-10-21T12:12:42+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml 9sH46ulnPWzUTI1_EN3da41p6.k4mSmY 2023-10-02T12:30:54+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml 7P9uze5iOaWi5DW64wWs9Msxw9LBENyH 2023-09-13T21:28:08+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml tLhqGZPfKuGNFknVfWstrv3FytHs6bqg 2023-08-08T13:18:52+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml 9lLQSnL31feet4a1Jd8Wdm_wJs7HPEU0 2023-08-05T14:00:51+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml UxCTNXhgRQZHLibRZhjabV3I4TSkxRaq 2023-08-05T13:43:22+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml 82vFLu0CoR3n__65ypZq6nC1BT0MvnGx 2023-08-05T13:36:37+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml VhKA1qKXMUMLgs2OBe2dr9dGQWNl3rcH 2023-08-05T13:32:58+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml kr8_6PMzMeRW6SV8UQawsKPx1oAF7Os9 2023-08-05T13:29:16+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml rTwvyUkeh.0vwF.u1uaEcMfH9lArFnY6 2023-08-05T12:45:23+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml mDwk5Bev_7Q.LJd6w2eD1lUl1EXORrPf 2023-07-06T20:31:09+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml rtXz2ALM_qrhX4R2f.WUziHN..9quIf0 2023-05-16T15:11:44+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml D.I.WnEY7Cp68wCCuWD0AwY96qC5vIiG 2023-05-16T15:05:11+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml G8yKlQR7B5r11J.t2YUyPGNjjZtComz. 2023-05-03T13:32:03+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml dw4UohTP8DPBkj2dGcggEwv3bAADUHA4 2023-04-28T19:08:48+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml uN5IgGoqYYx2WSOVjpGOe41Bb9kEzHw4 2022-10-18T14:14:44+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml podRu4cxsEJUOXAJFfAMcGF3hQ1vcwvo 2022-10-18T13:43:06+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml LtAYnDbXw3vRoSe6.aDXz.y_ZQybW1Xp 2022-10-18T13:25:31+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml gn1e6INC4KPx0OvhktDodcPkb9clky.D 2022-09-11T06:33:20+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml Jqh69goeXRg3nMt3D4aEDroc.IB5i8OB 2022-07-16T14:33:43+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml Wr9J4BeBViOhMl9BBG_44pLmr0hMWe5X 2022-03-23T11:37:45+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml PewofEHrwoIciJ1XYqGn82svFE5BHl5K 2022-03-16T12:00:05+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml MmhuLgQWllTULB38KI6xXbQg1RwS1lxv 2022-02-20T15:18:21+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml ArKm07J7rSqafPuzPfFlmsn_ItUwS56z 2022-02-15T14:07:49+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml BFS4eNJebiISNR5X1.7c9zf_QDh1.Yec 2022-02-15T13:23:29+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml DGZKVPXIwu1IaBOMdI7KlD6JY2BO5GlV 2022-01-15T20:58:19+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml nubsJPisfv3Wt4oifZNnarT15uDASCV0 2022-01-08T12:27:15+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml l.MpwEk856MNdEsCbNlmpbcp27105t45 2021-11-20T11:21:56+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml 4j3vX_RtxkAY_EJed8UsLumeXC0XNt.b 2021-08-04T09:52:56+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml dc0ItqhOTJ7v7KvT00qfi3Fg.5g4LJE3 2021-08-03T22:51:09+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml .H7VAFDZKoGnDSfTiB6Mvav6xgfQlzGR 2021-07-31T22:23:55+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml lllJiiBJE_WC7S69asV4boeNXcJ8PP5f 2021-07-31T21:00:55+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml ufncxM.t2LN5FdDI6P57uPPlWw2ztSi. 2021-07-31T19:57:05+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml lRa4PeE3qZRcrzBVdaun0sAn6n5PeJ3b 2021-07-31T19:34:11+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml w1X9xJGBoUenmFU4nbgaMt2jgTB6FpZZ 2021-07-29T23:24:15+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml dvZnwaUz9rP3kuRgJAsYn4hZPaSgdPdG 2021-07-25T17:26:52+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml X2zOPrfgM96HMFWvp.ZR1E7KjC7y_bxg 2021-07-25T17:20:27+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml n9NgZa6GPGRhv3ocJsRl6KXuktrleY6I 2021-07-25T17:18:39+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml I.04HUC_JiahwUvwoZvohy2WaxAr9dVV 2021-07-25T16:36:08+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml a5YC0ltv7cNvY4pOzu3T.x6UFLRCqGhW 2021-07-25T16:23:49+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml gVogegj_QCdAkZpJDAH2_7sDqJ5c8tWZ 2021-07-25T16:21:39+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml p7VFLPmGKX2NVjLPr7_3Oaik95UoKFX7 2021-07-25T16:19:33+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml .Zxa39PAITyDKBTqGn7cDt0TJvxCOHj5 2021-07-25T16:07:14+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml r_LeyusSOadaTBPujoEhU3oEyds9bTXh 2021-07-25T15:30:45+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml M6BqjE8ky37elWLNv.VOpvZcXm.LPKiJ 2021-07-25T15:27:39+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml CjSExSCFzeQV_1zdBkpkOc2GXIUiuFXk 2021-07-25T14:34:52+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml auSoQxkWRUV93mY62lapssBybXCWh9Kq 2021-07-07T10:48:52+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml db6AdXDIn6W1vQ23j9TvMQA8XJIq8fcX 2021-07-05T17:05:25+00:00 -aws-account-automation/OrgCloudTrail-Template.yaml QZ.kAqbs4DcVXzkU9OOssqQI9Qwb74BC 2021-07-05T16:36:35+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml dXTs7sFnopZ9ak6hNFr46eoz7T8k5bUS 2023-11-17T19:41:53+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml _V6yOj9pEZ7H.EmedzHCnAEtZSJVENzJ 2023-10-21T12:57:41+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml 8YLWiuFbcKZbxD2IFu9bXvROAL_9y9F. 2023-10-21T12:12:42+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml feaudvtcMMTpisSN6BYv9AMj6sCE1oKw 2023-10-02T12:30:54+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml 2FpnWgLDGt55AsSBhuC0A368rCKkjYA7 2023-09-13T21:28:08+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml 8p69LqlNVTHcgbZfhJkL3sZZjXuF_156 2023-08-08T13:18:52+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml SY7Iw7vSY0esNpnaOcvw31O9lQgzlCn1 2023-08-05T14:00:51+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml 6OWmTtax3.Q7zrtW5jhNYaT9JC8wA._6 2023-08-05T13:43:22+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml qCkXZ3iSMWHOv0OTmKtnUnwNd1TS4V9P 2023-08-05T13:36:37+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml LMp7bgeFSB7uaknO5ua_MFwNUnG.fdvw 2023-08-05T13:32:58+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml lqcYXFZi.M.rsLmPJWyVNQIWYp5MQBXA 2023-08-05T13:29:16+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml gkhBp.JT2qKtiwwAK2Pr4cyLZO70rJFC 2023-08-05T12:45:23+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml oIclEQpCsWQFD0C9fEtSNusP3Vfn30ux 2023-07-06T20:31:09+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml YtfZKpeD4cLsFQSBbKWDeRVv563e9Njf 2023-05-16T15:11:44+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml eGgzhpReTTewsp_FTou.wiV83RUNaEqW 2023-05-16T15:05:11+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml xN.2NazdyJJMH95uND_XWRw_5kn_Kzoz 2023-05-03T13:32:03+00:00 -aws-account-automation/OrgCloudTrailBucket-Template.yaml F7BiLZvJTzGbnCod21GDSOos5iirqJrh 2023-04-28T19:08:48+00:00 -aws-account-automation/ResponderRole-Template.yaml Dgu3EigE3wX0ZVVzHCgVWhjkSKHkGc8J 2023-11-17T19:41:53+00:00 -aws-account-automation/ResponderRole-Template.yaml Y0Fwwrs1Fq4qx.OtpcDRjduD7nmTwICn 2023-10-21T12:57:41+00:00 -aws-account-automation/ResponderRole-Template.yaml nWZPGFGySNYR0NzaEjEUsDBcQeAHDc7n 2023-10-21T12:12:42+00:00 -aws-account-automation/ResponderRole-Template.yaml pUVY_1nheRwlZY2M1foLQAd_gPJOa0xG 2023-10-02T12:30:54+00:00 -aws-account-automation/ResponderRole-Template.yaml 9OE7VAHvT6rWvJgWSTekUfrvn55VDD7L 2023-09-13T21:28:08+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml NZW.bTKajPHpuiBKyIyTwEcLl6d02y.O 2023-11-17T19:41:53+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml 5qKtrdxYa4qJzMRAHcsWrvQr1IuqHSN9 2023-10-21T12:57:41+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml 8JUyB7wcPmZLlUjSZdUkmaoD6dFB4grI 2023-10-21T12:12:42+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml 83ohJHbBLUve6mnM63iQWysEBLnnH4aV 2023-10-02T12:30:54+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml lHCeV.fUCOFrqHaD4y7vKU5ruLOJ5gK6 2023-09-13T21:28:08+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml k6gDUIiBJ47J7_Jk2G_R3D3fGBwKcHOs 2023-08-08T13:18:52+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml FAfUR1CBd1PNk2NxC_vDjWGUtYi.EJ5w 2023-08-05T14:00:51+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml ryP_cXK08YgGVVg4eGjohBXnHq92JpYX 2023-08-05T13:43:22+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml FP_z2YVebDpgGLRU6kdGE40KrOv8PgJc 2023-08-05T13:36:37+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml zPkDZX8ink6qram9qqAuPm1zW7WXEjQa 2023-08-05T13:32:58+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml U3KRFWYn6RyEPvYhqDguxSiTLDDh1BXx 2023-08-05T13:29:16+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml HYS7JihmJVvG7nPxCP6v7oCHlVbQWEWQ 2023-08-05T12:45:23+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml MzrUmSHGLpvt6P.B7k0gzMrjd3C6jibe 2023-07-06T20:31:09+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml tzL8BuqOVk.jAf17MbdbBUGiixmqGQ7u 2023-05-16T15:11:44+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml WGVSrcRxR2RLKgO_VIoCfFudcflRnkuK 2023-05-16T15:05:11+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml 0L2meb8_h9Cu2rl2LDs9xhOZ59Iw7hYa 2023-05-03T13:32:03+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml GGnAuB5lngvpzD87PLwlTdOWlP3Xi50M 2023-04-28T19:08:48+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml P4dZSWkBnrXfiqkb5Mfq_RYL3X0jkVpl 2022-10-18T14:14:44+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml lJzGMI0PLYxeaixBIOTTFb0Us9zke.8H 2022-10-18T13:43:06+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml MHwKAvzpRLZGwAVuwdvnXMTmLyPW70Zp 2022-10-18T13:25:31+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml zrN1RXgyG.sHTOGf86s1OpiNY6JZw4sA 2022-09-11T06:33:20+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml ST3CUn6DXGTnstYPRl9Fnih8CE3Ay0yU 2022-07-16T14:33:43+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml y23ppfNZxfuhXnnECeGfbMdKKNvau0Cz 2022-03-23T11:37:45+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml 37mYeVg4rM.eOTA0VFWGVLlo5o6HYe75 2022-03-16T12:00:05+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml 1bicKz7OlV7TCxT4txUij62oTyrXd97E 2022-02-20T15:18:21+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml WYmDpDCsKQxvSCLcKXCShMsO2NlmGXGF 2022-02-15T14:07:49+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml qxWdq_4PA7MMMQDznPc48LjFsOnd4Luj 2022-02-15T13:23:30+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml c6VCo7a.EjQnTNculrBPXmy5GP1qpFfI 2022-01-15T20:58:19+00:00 -aws-account-automation/SESRuleToSlack-Template.yaml .9lvWs05aFGvipaQUwKsvRwfRQbE2jow 2022-01-08T12:27:15+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml 4GLCJ4TkqzFFMLzARCFGQs_TcLiHC2gX 2023-11-17T19:41:53+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml DX5pxRoB5f9oFKV_Yzby93tIiyrSZBEw 2023-10-21T12:57:41+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml 8pBQPIvW3._5WzBoLZneOcLUa4Kl5SIf 2023-10-21T12:12:42+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml PwLS7uhH3yQ4nKnoccBxtC54Z0BBZz4R 2023-10-02T12:30:54+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml LtBCTcfj5a3WNF3tBKb8VbatI65hQ_Ss 2023-09-13T21:28:08+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml ZiLOEfWWVbYqCiTaK5cEdl8_xnkRViyE 2023-08-08T13:18:52+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml d.Sa7U6vdcqw.X1puDkDSjbkLsCw77T3 2023-08-05T14:00:51+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml BSnQVndk9_mw_SrhUvrzgsa5TCHGUkYu 2023-08-05T13:43:22+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml R5r1fxilNTfzpcO.zpmlJc95QYzH0Wke 2023-08-05T13:36:37+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml k5ferQcJdZbmt2C7OLCyLEQVg3fTBkd6 2023-08-05T13:32:58+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml lo7kqVZZpZEsJ4ZjnHV1Me7h7CsS6H3N 2023-08-05T13:29:16+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml _hJp5VAn2aol.Q_A9UD1xIw2TuVwgd3H 2023-08-05T12:45:23+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml C1wllSD4qRPkFwwNdIpjqX5sa.oO945O 2023-07-06T20:31:09+00:00 -aws-account-automation/SecurityAlertChatBot-Template.yaml K5cug0UBNx74EPaxZ1reF5GW2GkCDYO9 2023-05-16T15:11:44+00:00 -aws-account-automation/SecurityRole-StackSetTemplate.yaml DOoYJ5PTtSOdG0oGmhPLTMPQkJqkLKwM 2023-11-17T19:41:53+00:00 -aws-account-automation/SecurityRole-StackSetTemplate.yaml PlUwBK6jnCLMrUbG8kCJ9q3Q27O0MbYf 2023-10-21T12:57:41+00:00 -aws-account-automation/SecurityRole-StackSetTemplate.yaml 3hys3gsGfsntIBsyxG8NxVbO0Nt1Tzh9 2023-10-21T12:12:42+00:00 -aws-account-automation/SecurityRole-StackSetTemplate.yaml 9BYj_kcwaLaYLs10Av8voemBTqC5j5rY 2023-10-02T12:30:54+00:00 -aws-account-automation/SecurityRole-StackSetTemplate.yaml 2RBxtKMqKxzCUxUJxY_pvhtR5l_cP6DO 2023-09-13T21:28:08+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml goA5VU4f9Mfsnv_7oUyfeAqskaSf0d47 2023-11-17T19:41:53+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml bNUUrQ7eMaE8rV4m8m971vlc3OYccVTw 2023-10-21T12:57:41+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml ZK4NagHmL07vkRI.5lR1DPndgbNFqlDH 2023-10-21T12:12:42+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml vaIID65U2T6M0og1EHB9BTTX3STGlhRl 2023-10-02T12:30:54+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml 9Lr05FmGX_7Moud8b0vFf95m5NCFpOps 2023-09-13T21:28:08+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml ZfEw2IooSiPTSOlnznTAKHKpSZopK7I4 2023-08-08T13:18:52+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml FFKmK9z4DA.Gl4QegXV0lom18pHJ1Inx 2023-08-05T14:00:51+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml cD_FMQfFXDcLktdykycX2k2Jy5uhWIA9 2023-08-05T13:43:22+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml JBlyNAeXQmiNUtDNcSi91FPxz4lzYv6i 2023-08-05T13:36:37+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml xIBqjpBdh0G6VdiE3RqVB.rq_.K_7_2w 2023-08-05T13:32:58+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml 0_YJhct.QRBHStwtRq7C1X7plmAuiOq2 2023-08-05T13:29:16+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml rd8jJDSHx8gz8OMj4GGX63pwA92eylUw 2023-08-05T12:45:23+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml TfvH.B3FBedlW34hM13gVKu9uR5DWuDF 2023-07-06T20:31:09+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml 9pNzTLEIqBgUr4bgnatv0XCApiA9Hdaz 2023-05-16T15:11:44+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml RE1QZQXZhPFokUe9HlhFt.WtDEeRUKsz 2023-05-16T15:05:11+00:00 -aws-account-automation/VPCFlowLogBucket-Template.yaml wg2uFE6cUe9aq3_CL4FBNAO2m2Xgp6IE 2023-05-03T13:32:03+00:00 -aws-account-automation/requireMFA-Template.yaml DcOoI9ly8ibScqN6YSdYILA6J.QuRIu_ 2023-11-17T19:41:53+00:00 -aws-account-automation/requireMFA-Template.yaml aQFB27QXUwny3l98OT37PIwm5AJo4MBD 2023-10-21T12:57:41+00:00 -aws-account-automation/requireMFA-Template.yaml JFjRxUsuHLeCUaVN_RCRY1s5MAUBlL.q 2023-10-21T12:12:42+00:00 -aws-account-automation/requireMFA-Template.yaml KuqXVofB8lbQUXXs7OQCXhfH.bZd51Pz 2023-10-02T12:30:54+00:00 -aws-account-automation/requireMFA-Template.yaml tAdtpV5y5zQpqM4rtUoCy0ebETJPSOA7 2023-09-13T21:28:08+00:00 -aws-account-automation/requireMFA-Template.yaml BE50fr_i2SSJOqQegrd6_lvfZHUgjABD 2023-08-08T13:18:52+00:00 -aws-account-automation/requireMFA-Template.yaml Qko2Ko.0w35tIl8yjaS7OiPWIHALktOC 2023-08-05T14:00:51+00:00 -aws-account-automation/requireMFA-Template.yaml Lh8DFkr4K1sdS3XffjKtN1f5G4oSYvJS 2023-08-05T13:43:22+00:00 -aws-account-automation/requireMFA-Template.yaml HYLF8mYd9lzc.9wQtAGM_yv49Vbw2EST 2023-08-05T13:36:37+00:00 -aws-account-automation/requireMFA-Template.yaml iLsmOKDrLfTHdKPINKLt9cWSFT14k1rG 2023-08-05T13:32:58+00:00 -aws-account-automation/requireMFA-Template.yaml yDXWCk0rtPkqBLLr8ELUADkkruMFxtbC 2023-08-05T13:29:16+00:00 -aws-account-automation/requireMFA-Template.yaml UCVSKCNnol5bJUBS_Cp0yUT1a4CsThd7 2023-08-05T12:45:23+00:00 -aws-account-automation/requireMFA-Template.yaml Q0kDSsDcQd8wKIKehtvY4dFF6F9MwwSb 2023-07-06T20:31:09+00:00 -aws-account-automation/requireMFA-Template.yaml 90u5QTWOHr2PxSAyAIHkV3dNrpng4AGF 2023-05-16T15:11:44+00:00 -aws-account-automation/requireMFA-Template.yaml sLDud5JaBF4oHRE26xnYEsVJJO40GRtx 2023-05-16T15:05:11+00:00 -aws-account-automation/requireMFA-Template.yaml rszjEVINMCkM5cUCIpNo3LbQjANGdMlR 2023-05-03T13:32:03+00:00 -aws-account-automation/requireMFA-Template.yaml OvTGA.ja6EEThhs2YB6r8VcF08CwG3ff 2023-04-28T19:08:48+00:00 -aws-account-automation/requireMFA-Template.yaml .cnw6lzKv.fbjBwYO3ItqcEuANxQsr0x 2022-10-18T14:14:44+00:00 -aws-account-automation/requireMFA-Template.yaml F0UqhM6cJgM152sAoqrqTwvRsdJ36_dG 2022-10-18T13:43:06+00:00 -aws-account-automation/requireMFA-Template.yaml X5r_p1ZOU_o7nrOH6jOy7UEUj85VdxLU 2022-10-18T13:25:31+00:00 -aws-account-automation/requireMFA-Template.yaml .w3gLKhnWR0w90zqC0XwQIkCpWcrXuJ7 2022-09-11T06:33:20+00:00 -aws-account-automation/requireMFA-Template.yaml zGhH5fSogiafl0OL9kfKMQ9imhSKQUvC 2022-07-16T14:33:43+00:00 -aws-account-automation/requireMFA-Template.yaml _1Ca872GvjQvgaGPd.5gqE7c7QVgCqq4 2022-03-23T11:37:45+00:00 -aws-account-automation/requireMFA-Template.yaml I.jYw9HJCcs_Grqgm7.oeXBWiiw5a75v 2022-03-16T12:00:05+00:00 -aws-account-automation/requireMFA-Template.yaml qYU4DkPtQGG17xEocRNSG8ZHofU.es8A 2022-02-20T15:18:21+00:00 -aws-account-automation/requireMFA-Template.yaml R2Mfd_RP00WYNKZDugo.6KAXmUZqJBUQ 2022-02-15T14:07:49+00:00 -aws-account-automation/requireMFA-Template.yaml Sh.D.HZo2W.w2NRLFAiP7axoD4cbGeKc 2022-02-15T13:23:30+00:00 -aws-account-automation/requireMFA-Template.yaml 9yScFLjxXJNmomZmJND9qe3yYdO3az.A 2022-01-15T20:58:19+00:00 -aws-account-automation/requireMFA-Template.yaml TnH3ms7MA8QvKA.OEDcq6EYnlb1Fhz5n 2022-01-08T12:27:15+00:00 -aws-account-automation/requireMFA-Template.yaml 3SB3Mf9lETC1a7dorSSVMvkO_GK68Mrx 2021-11-20T11:21:56+00:00 -aws-account-automation/requireMFA-Template.yaml sgLmx8ip6_oohqSfYrzBqTa._UT.sUj2 2021-08-04T09:52:56+00:00 -aws-account-automation/requireMFA-Template.yaml GdhAU..H9L4WC2SgVPSq7IQKtt3Hc0xk 2021-08-03T22:51:09+00:00 -aws-account-automation/requireMFA-Template.yaml PabvD5eWCUuHLY88Zxl09pJ32WuUxhix 2021-07-31T22:23:55+00:00 -aws-account-automation/requireMFA-Template.yaml R98wGYH_GiYFQkr2NE.D5UfV1PFim95Q 2021-07-31T21:00:55+00:00 -aws-account-automation/requireMFA-Template.yaml sJltPtwRZzDjz_9zPJlhmQLWgKPLIahs 2021-07-31T19:57:05+00:00 -aws-account-automation/requireMFA-Template.yaml MXx4miQVDF3RQmFpfsK.FtsN9OhN_wYu 2021-07-31T19:34:11+00:00 -aws-account-automation/requireMFA-Template.yaml GEy.tXeM0PdRccb4F5QRmbxI0HFXkC5J 2021-07-29T23:24:15+00:00 -aws-account-automation/requireMFA-Template.yaml GCUR78KTZJVZqsrzkZiEXX6Xrr6ybxs_ 2021-07-25T17:26:52+00:00 -aws-account-automation/requireMFA-Template.yaml 15dR.eLxsz11iNqgeLUuy_7smMdYSAlo 2021-07-25T17:20:27+00:00 -aws-account-automation/requireMFA-Template.yaml QxAMNOXfK.IVkLaVIonlYcP4PPjGjQw6 2021-07-25T17:18:39+00:00 -aws-account-automation/requireMFA-Template.yaml v7PMlCQuoFKATvMtEKy4s.opMja8NYG3 2021-07-25T16:36:08+00:00 -aws-account-automation/requireMFA-Template.yaml lDD8DZF1dDtwEjjdTcGkS..RooSVoSJi 2021-07-25T16:23:49+00:00 -aws-account-automation/requireMFA-Template.yaml L.b5sK57BJzwnEJDndM1aMP9R_d7wNdl 2021-07-25T16:21:39+00:00 -aws-account-automation/requireMFA-Template.yaml RdEHQjMrcBgSH5aEC8h34t9KzLT6VNml 2021-07-25T16:19:33+00:00 -aws-account-automation/requireMFA-Template.yaml vj314pff7S67yRmW7p88VFYxm8NaU2YH 2021-07-25T16:07:14+00:00 -aws-account-automation/requireMFA-Template.yaml FoEpnRN1llP.Gghf8F_QHRFH6ydedLqq 2021-07-25T15:30:45+00:00 -aws-account-automation/requireMFA-Template.yaml lzuMvU0wiFdy9zC9DZY5IwIzptiWVYQh 2021-07-25T15:27:39+00:00 -aws-account-automation/requireMFA-Template.yaml PmLfCvN3Ci17zgLQDcSDDo5N0.Pi488C 2021-07-25T14:34:52+00:00 -aws-account-automation/requireMFA-Template.yaml x.5kSN1o1KqvsQj8T.wPUdIPuWSWPDI5 2021-07-07T10:48:52+00:00 -aws-account-automation/requireMFA-Template.yaml wTawoXxmJq39BFHx2DccWVgnj6dwHhvL 2021-07-05T17:05:25+00:00 -aws-account-automation/requireMFA-Template.yaml k7fbL9aev4mQrgNeL34AEp1pphbaq1Vo 2021-07-05T16:36:35+00:00 -aws-account-automation/requireMFA-Template.yaml 8_xqciGPgm6Ybk9ItxZ5IyuopNLkWSDD 2021-04-10T18:14:19+00:00 -aws-account-automation/requireMFA-Template.yaml zCHOaXehC_TcSm4ec__THZ8gL7x2iKBO 2021-01-20T17:39:46+00:00 -aws-account-automation/requireMFA-Template.yaml pIpvk7UL3_UZe3ZfAV0jfVzWL5h_Gvzk 2020-12-31T12:38:56+00:00 -aws-account-automation/requireMFA-Template.yaml hsUFsDda6Bi1i7QBD3UrGY85w6collMj 2020-12-20T13:13:33+00:00 -aws-account-automation/requireMFA-Template.yaml 4MeBOrh9urA4IrEhXU6ZYeX3CjXLNI69 2020-12-20T13:12:06+00:00 -aws-account-automation/requireMFA-Template.yaml wBeXBX4v2cwkqxiU1tK8ekHxybNrLMAy 2020-12-20T13:08:56+00:00 -aws-account-automation/requireMFA-Template.yaml sDwUmUdBGo.vf0dqlrpKMuYmHH9KCsbJ 2020-12-20T12:50:35+00:00 -aws-account-automation/requireMFA-Template.yaml j7IexhN3aTEzZfSxVy2uefHsK7kRr4uj 2020-11-25T18:20:49+00:00 -aws-account-automation/requireMFA-Template.yaml .kCNj7ERn0NC1TbynZgaz4aBSYGB.UgT 2020-10-23T14:00:32+00:00 -aws-account-automation/requireMFA-Template.yaml HKKHa1M6GEC.AKSYgtnJc3QwlFHPQPS. 2020-10-23T13:48:36+00:00 -aws-account-automation/requireMFA-Template.yaml 44wUF8BQbv3TJDTvTcCQBZiaXjiK7IHp 2020-10-23T00:17:24+00:00 -aws-account-automation/requireMFA-Template.yaml DHHrdFyKlKXVyDwBH2oGK7Jw4d7HN.3C 2020-10-22T23:26:35+00:00 -aws-account-automation/requireMFA-Template.yaml VsPZAbnDjCudFamSCFI7vLWJgWkrCiL6 2020-05-02T18:35:07+00:00 -aws-account-automation/requireMFA-Template.yaml N25GFk4K9KBclWoqzqBbjoe6VSHu3jK. 2020-05-02T18:34:17+00:00 -aws-account-automation/requireMFA-Template.yaml gp5UKmOO46XQz6IwHEjwv0nCi6a3n1ea 2020-05-02T18:24:12+00:00 -aws-account-automation/requireMFA-Template.yaml pDTnTGzhBlL7UvcwpICQnE_n1fN192wH 2020-05-02T18:21:11+00:00 -aws-account-automation/requireMFA-Template.yaml 0aC7iSadMpAHEcEoei3ChU0PlSYdaL2_ 2020-05-02T18:18:12+00:00 -aws-account-automation/requireMFA-Template.yaml LMxNEYTD3jmwKRuZecy5W5rGyTTXLsan 2020-05-02T18:17:03+00:00 -aws-account-automation/requireMFA-Template.yaml T1C0rw1D66JAN7iah2Wo66BRWMqRDHvX 2020-05-02T16:55:28+00:00 -aws-account-automation/requireMFA-Template.yaml vwZEg16GsyfEV8iEJ539amGR0gXL9Q7X 2020-05-02T16:54:40+00:00 -aws-account-automation/requireMFA-Template.yaml PxO9H3mE3D6HzoeRCGgazPK2tCTDRkXX 2020-05-02T15:38:05+00:00 From c943a13a14c705ca539e18e2777f9c41b470bd71 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 9 Dec 2023 14:56:39 +0000 Subject: [PATCH 12/12] AutoGenerated Links File --- Test-Links.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/Test-Links.md b/Test-Links.md index edd39d1..07a07e5 100644 --- a/Test-Links.md +++ b/Test-Links.md @@ -3,6 +3,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (1H8f7TOfPWj7VncNie_9nR4LMs2k3.7C)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=1H8f7TOfPWj7VncNie_9nR4LMs2k3.7C) * [2023-12-09 14:54:57+00:00 (9FDAp.cDnvMMAwf_QDxF2TNLv3qD6YrL)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=9FDAp.cDnvMMAwf_QDxF2TNLv3qD6YrL) * [2023-12-09 14:45:42+00:00 (mAmSKUQFeJFvEimpTnMjLCwGCqfOVd4y)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=mAmSKUQFeJFvEimpTnMjLCwGCqfOVd4y) * [2023-12-09 14:38:03+00:00 (8i8neCMagKa.bW2eJX3jfgvAPisxl18E)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSCloudFormationStackSetRoles-Template.yaml?versionId=8i8neCMagKa.bW2eJX3jfgvAPisxl18E) @@ -21,6 +22,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AWSConfigBucket-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (HBa7sd32CnH0.VLEzCdbgfs3GzhVLsQZ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=HBa7sd32CnH0.VLEzCdbgfs3GzhVLsQZ) * [2023-12-09 14:54:57+00:00 (NsYCG_ntdctmx0fHa4JBORODAWo_Cwy_)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=NsYCG_ntdctmx0fHa4JBORODAWo_Cwy_) * [2023-12-09 14:45:42+00:00 (fe6VxXuZLidMTxNYslnqsFIHPOHNEz6J)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=fe6VxXuZLidMTxNYslnqsFIHPOHNEz6J) * [2023-12-09 14:38:03+00:00 (3UipFwY09OtM2kT5rMgI98K7vZonPiXm)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigBucket-Template.yaml?versionId=3UipFwY09OtM2kT5rMgI98K7vZonPiXm) @@ -34,6 +36,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (OvxLJCbhjMzvwktxO0KpA4q7QI36fdwt)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=OvxLJCbhjMzvwktxO0KpA4q7QI36fdwt) * [2023-12-09 14:54:57+00:00 (OGP30.P8MsezQnY5y4sTUdU8ykS78DJ.)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=OGP30.P8MsezQnY5y4sTUdU8ykS78DJ.) * [2023-12-09 14:45:42+00:00 (CXMHH2EIYnWCrdJ0jIUPvI62GuY0OpkR)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=CXMHH2EIYnWCrdJ0jIUPvI62GuY0OpkR) * [2023-12-09 14:38:03+00:00 (qqJbpj5Bam20oB_zifC8bttLVBbKuZhF)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-StackSetTemplate.yaml?versionId=qqJbpj5Bam20oB_zifC8bttLVBbKuZhF) @@ -47,6 +50,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AWSConfigRecorder-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (kHgwJlONf3Tfer70BKV2lXpzH41Ys77L)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=kHgwJlONf3Tfer70BKV2lXpzH41Ys77L) * [2023-12-09 14:54:57+00:00 (k8FrD1f64DTCSiPxH7h102F.JmvIEryB)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=k8FrD1f64DTCSiPxH7h102F.JmvIEryB) * [2023-12-09 14:45:42+00:00 (LYgaSrid3e.UlXgMPOTfBK5w7v6ZGSmP)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=LYgaSrid3e.UlXgMPOTfBK5w7v6ZGSmP) * [2023-12-09 14:38:03+00:00 (Xwul7uWplCa3XOHlT2UV2Kav_PsIbwLM)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AWSConfigRecorder-Template.yaml?versionId=Xwul7uWplCa3XOHlT2UV2Kav_PsIbwLM) @@ -60,6 +64,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (v9vIw76iDRWz55GhiHJjrWq14YqGW8uJ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=v9vIw76iDRWz55GhiHJjrWq14YqGW8uJ) * [2023-12-09 14:54:57+00:00 (7Po6DHebSnMc.4Brry.92BDN3VaMJXYP)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=7Po6DHebSnMc.4Brry.92BDN3VaMJXYP) * [2023-12-09 14:45:42+00:00 (ozT01mK51bEqPZPBOImTWvnNlOClSpRI)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=ozT01mK51bEqPZPBOImTWvnNlOClSpRI) * [2023-12-09 14:38:03+00:00 (Q1_xj1HkaiLlusq7anXdrJEl1_aYTwPW)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-StackSetTemplate.yaml?versionId=Q1_xj1HkaiLlusq7anXdrJEl1_aYTwPW) @@ -73,6 +78,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AccessAnalyzerAlert-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (T5V65hNjw9bRKDcLWEkzBQUw0GqttZUZ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=T5V65hNjw9bRKDcLWEkzBQUw0GqttZUZ) * [2023-12-09 14:54:57+00:00 (wcNG52mq3thGE8OkMMbE_rwbq6e9dFgC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=wcNG52mq3thGE8OkMMbE_rwbq6e9dFgC) * [2023-12-09 14:45:42+00:00 (RiRhvQO0nj.P2ul1Ft3GHc4JD_DPwapW)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=RiRhvQO0nj.P2ul1Ft3GHc4JD_DPwapW) * [2023-12-09 14:38:03+00:00 (OKvdPrNHLZP9UrKwx26axy17YK8QPTnZ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccessAnalyzerAlert-Template.yaml?versionId=OKvdPrNHLZP9UrKwx26axy17YK8QPTnZ) @@ -86,6 +92,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AccountAlertTopics-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (XLBrlsa8dgseD1GAB6CBw84lnmYMSF7W)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=XLBrlsa8dgseD1GAB6CBw84lnmYMSF7W) * [2023-12-09 14:54:57+00:00 (2dF4jaXXtSftXdllQbldxidP86s.Ytfb)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=2dF4jaXXtSftXdllQbldxidP86s.Ytfb) * [2023-12-09 14:45:42+00:00 (8EwVfOnlICBOumMll.0Vh13BhcPp11CH)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=8EwVfOnlICBOumMll.0Vh13BhcPp11CH) * [2023-12-09 14:38:03+00:00 (x3pLJtyM9i1TkMMpZ_flCZgr6ZmO.ypl)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AccountAlertTopics-Template.yaml?versionId=x3pLJtyM9i1TkMMpZ_flCZgr6ZmO.ypl) @@ -104,6 +111,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (HNCharRfog5cCFLVlGibNqBiiu.ruhFC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=HNCharRfog5cCFLVlGibNqBiiu.ruhFC) * [2023-12-09 14:54:57+00:00 (_kbk8.mRaoOoftwioMcrQP5YgAqMVJOQ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=_kbk8.mRaoOoftwioMcrQP5YgAqMVJOQ) * [2023-12-09 14:45:42+00:00 (h4Y2N5Gk64AdbHFZpMS3Gv_AoeYA61E2)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=h4Y2N5Gk64AdbHFZpMS3Gv_AoeYA61E2) * [2023-12-09 14:38:03+00:00 (ZjEjV98h7MWWCZc9ot_n06X8SH9SvHdp)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AdvancedEventSelectorsDataTrail-Template.yaml?versionId=ZjEjV98h7MWWCZc9ot_n06X8SH9SvHdp) @@ -117,6 +125,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/AuditRole-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (QC5SQcal9vQEvMPJYpvBqgWl2OXoPsR3)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=QC5SQcal9vQEvMPJYpvBqgWl2OXoPsR3) * [2023-12-09 14:54:57+00:00 (FxljsR2wWwN5H9yA4zo0LEZjZgQ.3rk_)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=FxljsR2wWwN5H9yA4zo0LEZjZgQ.3rk_) * [2023-12-09 14:45:42+00:00 (64Sx1nBb7KjrrHafbYbWrqH8GocGe3vC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=64Sx1nBb7KjrrHafbYbWrqH8GocGe3vC) * [2023-12-09 14:38:03+00:00 (IvjSYlCXB68bV47X9syOAZxB5TaA2DoC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/AuditRole-Template.yaml?versionId=IvjSYlCXB68bV47X9syOAZxB5TaA2DoC) @@ -135,6 +144,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/BillingBucket-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (A7THhBP4R1NnxpXK9qgWjH9ciLLU20Nz)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=A7THhBP4R1NnxpXK9qgWjH9ciLLU20Nz) * [2023-12-09 14:54:57+00:00 (L3gAoPP2nWAvfXSycrEFDd4eA8OCcHdg)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=L3gAoPP2nWAvfXSycrEFDd4eA8OCcHdg) * [2023-12-09 14:45:42+00:00 (X21jhX80D_7F4G7IEk15sMBLEs7Wds8c)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=X21jhX80D_7F4G7IEk15sMBLEs7Wds8c) * [2023-12-09 14:38:03+00:00 (6M3xkOMmurRThPoe.TLxFAZig3C6tGvV)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingBucket-Template.yaml?versionId=6M3xkOMmurRThPoe.TLxFAZig3C6tGvV) @@ -153,6 +163,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/BillingMetrics-Template-Transformed.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (hcOT_.MHAXoyTO14NxCmIDf0rBSYVTJ9)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=hcOT_.MHAXoyTO14NxCmIDf0rBSYVTJ9) * [2023-12-09 14:54:57+00:00 (xNuz_zqcg3ZTlWQBk1_hqn6m9KLyQfcz)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=xNuz_zqcg3ZTlWQBk1_hqn6m9KLyQfcz) * [2023-12-09 14:45:42+00:00 (OUjBvYnQpPGznRcZ5DM5nbVPKlldaNTU)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=OUjBvYnQpPGznRcZ5DM5nbVPKlldaNTU) * [2023-12-09 14:38:03+00:00 (XkzJZ5tEI.WtxA5W9tQp1Y.SiXjUIGQ9)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template-Transformed.yaml?versionId=XkzJZ5tEI.WtxA5W9tQp1Y.SiXjUIGQ9) @@ -170,6 +181,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/BillingMetrics-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (axwm0KVpBvddtiSEGcBwkmyPialzcdlU)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=axwm0KVpBvddtiSEGcBwkmyPialzcdlU) * [2023-12-09 14:54:58+00:00 (blgYUUEzWxRDeG4cP6Ekw7rfv288QO7s)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=blgYUUEzWxRDeG4cP6Ekw7rfv288QO7s) * [2023-12-09 14:45:42+00:00 (npw7Q118wDusbCBAs4RkJs3Pb_dzO9Ft)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=npw7Q118wDusbCBAs4RkJs3Pb_dzO9Ft) * [2023-12-09 14:38:03+00:00 (izphBrktDbG5NwHRA6XJMEJsZt5pQg48)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/BillingMetrics-Template.yaml?versionId=izphBrktDbG5NwHRA6XJMEJsZt5pQg48) @@ -187,6 +199,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/CloudTrail-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (9K0GzRttMdtp1FvS6PkqwZuge1z9QtOf)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=9K0GzRttMdtp1FvS6PkqwZuge1z9QtOf) * [2023-12-09 14:54:58+00:00 (GcdrVKy9RmILDv1kCeQo5tKS0Z8792mK)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=GcdrVKy9RmILDv1kCeQo5tKS0Z8792mK) * [2023-12-09 14:45:42+00:00 (Rzrwdxs3F346DpF0WGtYs08mi.q3Fj7d)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=Rzrwdxs3F346DpF0WGtYs08mi.q3Fj7d) * [2023-12-09 14:38:03+00:00 (jyYIpj3LQvuMjkx04HfLaIyGo_GM8IOC)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrail-Template.yaml?versionId=jyYIpj3LQvuMjkx04HfLaIyGo_GM8IOC) @@ -205,6 +218,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/CloudTrailConfigBucket-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (_IjtF2PoSHSfsKtVMV5YcUvA5QAR92S9)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=_IjtF2PoSHSfsKtVMV5YcUvA5QAR92S9) * [2023-12-09 14:54:58+00:00 (C.B9O6gG1lCM9z1q2soOcGC_9cBjguUs)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=C.B9O6gG1lCM9z1q2soOcGC_9cBjguUs) * [2023-12-09 14:45:42+00:00 (RTD6h6j19_d909arKELotgP6B9lOJmmN)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=RTD6h6j19_d909arKELotgP6B9lOJmmN) * [2023-12-09 14:38:03+00:00 (lOr6I0v8RxNdXCxCuhqpnG7Iaesn1JLe)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudTrailConfigBucket-Template.yaml?versionId=lOr6I0v8RxNdXCxCuhqpnG7Iaesn1JLe) @@ -218,6 +232,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (7qMrdPKIqsCN1ZOOek8XE5KU9tztsmdZ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=7qMrdPKIqsCN1ZOOek8XE5KU9tztsmdZ) * [2023-12-09 14:54:58+00:00 (9Dkef0J4C2xcOaLwKBXkh_TWWI8XIgLG)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=9Dkef0J4C2xcOaLwKBXkh_TWWI8XIgLG) * [2023-12-09 14:45:42+00:00 (RrHNFBn.eL8P7q7ELZvNNJBOQ3XVY5wV)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=RrHNFBn.eL8P7q7ELZvNNJBOQ3XVY5wV) * [2023-12-09 14:38:03+00:00 (iiD54cwrxazhgzoaQOeVHjFRSz6wMwkv)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CloudWatchAlarmsForCloudTrailAPIActivity-Template.yaml?versionId=iiD54cwrxazhgzoaQOeVHjFRSz6wMwkv) @@ -236,6 +251,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/CostExplorerAlerts-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (D6DzJUUCXE76MFnViU_MDiOEww0p_Gbb)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=D6DzJUUCXE76MFnViU_MDiOEww0p_Gbb) * [2023-12-09 14:54:58+00:00 (fpx3.RJqJKhrBfLD8DL.V_HGETMsbPuW)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=fpx3.RJqJKhrBfLD8DL.V_HGETMsbPuW) * [2023-12-09 14:45:42+00:00 (.yC6O1Q7a0.QTg8.4LrE_MZL1T9is1zo)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=.yC6O1Q7a0.QTg8.4LrE_MZL1T9is1zo) * [2023-12-09 14:38:03+00:00 (htjrUGqGNMzMDDrYZqzEPxhKlv4PNsTk)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/CostExplorerAlerts-Template.yaml?versionId=htjrUGqGNMzMDDrYZqzEPxhKlv4PNsTk) @@ -249,6 +265,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/EBSAutomatedTagging.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (A_1vgzaZVe.K7tw6WG54Qmmpc_2puCT5)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=A_1vgzaZVe.K7tw6WG54Qmmpc_2puCT5) * [2023-12-09 14:54:58+00:00 (klAEp38eS.ohdbtar0PrrvgonmJdd011)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=klAEp38eS.ohdbtar0PrrvgonmJdd011) * [2023-12-09 14:45:42+00:00 (5MBPqOa.wcW0kREMJp6zNkYDq88q.D5b)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=5MBPqOa.wcW0kREMJp6zNkYDq88q.D5b) * [2023-12-09 14:38:03+00:00 (uU1_dzimYI8sfWVm14yVlcGT.nnCZLLZ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/EBSAutomatedTagging.yaml?versionId=uU1_dzimYI8sfWVm14yVlcGT.nnCZLLZ) @@ -267,6 +284,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (zXJv6RExsYZ68FzdnINqoAMWIwPTKIlO)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=zXJv6RExsYZ68FzdnINqoAMWIwPTKIlO) * [2023-12-09 14:54:58+00:00 (jETPdk4NFDI4BshkJxQi3Jieu8rRpWLT)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=jETPdk4NFDI4BshkJxQi3Jieu8rRpWLT) * [2023-12-09 14:45:42+00:00 (5nl_mSaEVIhPqCJgxaaLJn0edTUMXSdP)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=5nl_mSaEVIhPqCJgxaaLJn0edTUMXSdP) * [2023-12-09 14:38:03+00:00 (ApNAnAy5iclwOO1zl9ADXMSfkLcW7ffQ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-StackSetTemplate.yaml?versionId=ApNAnAy5iclwOO1zl9ADXMSfkLcW7ffQ) @@ -280,6 +298,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/GuardDuty-to-Slack-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (bTB7FSwbSOt0gonA8SS0F0g8QxCKVvDr)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=bTB7FSwbSOt0gonA8SS0F0g8QxCKVvDr) * [2023-12-09 14:54:58+00:00 (VrSOit7DsmoLCMhbXsBWdRDocbBz2P5c)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=VrSOit7DsmoLCMhbXsBWdRDocbBz2P5c) * [2023-12-09 14:45:42+00:00 (vEft41x.ju2pZQxyD2Xsg3yT5OZDejyW)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=vEft41x.ju2pZQxyD2Xsg3yT5OZDejyW) * [2023-12-09 14:38:03+00:00 (rVpckbw7QsqLPZTf4a.753hqtIMNie8A)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/GuardDuty-to-Slack-Template.yaml?versionId=rVpckbw7QsqLPZTf4a.753hqtIMNie8A) @@ -298,6 +317,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/IAM-ExpireUsers-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (yGmSsPtkb5dNl3LDhuGfFehUrmA1GhMx)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=yGmSsPtkb5dNl3LDhuGfFehUrmA1GhMx) * [2023-12-09 14:54:58+00:00 (bDVoeu3TeF9iYWXw5_1NrqPeTyEM42J1)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=bDVoeu3TeF9iYWXw5_1NrqPeTyEM42J1) * [2023-12-09 14:45:42+00:00 (RzVhQkNp_v8efksVh72TrIOtm8P9F74d)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=RzVhQkNp_v8efksVh72TrIOtm8P9F74d) * [2023-12-09 14:38:03+00:00 (szyU5vYRr4ePIBTkx4ob7uBHdFU0xCdH)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/IAM-ExpireUsers-Template.yaml?versionId=szyU5vYRr4ePIBTkx4ob7uBHdFU0xCdH) @@ -316,6 +336,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/OrgCloudTrail-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (MIIl9oz0Q0Cc5GxRTlcLcK_O7zPyOu5a)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=MIIl9oz0Q0Cc5GxRTlcLcK_O7zPyOu5a) * [2023-12-09 14:54:58+00:00 (ptqOlg_bV965dJlQDbJ1nZJYC9hXkt9y)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=ptqOlg_bV965dJlQDbJ1nZJYC9hXkt9y) * [2023-12-09 14:45:42+00:00 (ilZdSO0yK_hfRrnR8sDxH2GYHLJtjL7_)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=ilZdSO0yK_hfRrnR8sDxH2GYHLJtjL7_) * [2023-12-09 14:38:03+00:00 (lZZoHDxSS1EI4J.60nItVGCsYOSvJxcJ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrail-Template.yaml?versionId=lZZoHDxSS1EI4J.60nItVGCsYOSvJxcJ) @@ -329,6 +350,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/OrgCloudTrailBucket-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (ZUZIrlRd5fnAdv.ljM2Jrv4Cu_MxqPXG)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=ZUZIrlRd5fnAdv.ljM2Jrv4Cu_MxqPXG) * [2023-12-09 14:54:58+00:00 (JJiraxlXxCiJzQnMGCDK6NBXrmhj_iM2)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=JJiraxlXxCiJzQnMGCDK6NBXrmhj_iM2) * [2023-12-09 14:45:42+00:00 (Wf9RjxCl4TMzK3RLpU12jDw8XW7ievCo)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=Wf9RjxCl4TMzK3RLpU12jDw8XW7ievCo) * [2023-12-09 14:38:03+00:00 (rTW3br2fITp8XO.IyIUPUZChEzqwUvtb)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/OrgCloudTrailBucket-Template.yaml?versionId=rTW3br2fITp8XO.IyIUPUZChEzqwUvtb) @@ -342,6 +364,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/ResponderRole-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (kGGANNGul5lJz_RLLf7nGc0E2u8M_6Dc)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=kGGANNGul5lJz_RLLf7nGc0E2u8M_6Dc) * [2023-12-09 14:54:58+00:00 (wEgB4.8l7v8dEYhmjM5o5HWIufq2l4qG)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=wEgB4.8l7v8dEYhmjM5o5HWIufq2l4qG) * [2023-12-09 14:45:42+00:00 (6MqnvxQcgNIkIiE9ka17aED2vGr_WgkJ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=6MqnvxQcgNIkIiE9ka17aED2vGr_WgkJ) * [2023-12-09 14:38:03+00:00 (WupR4..ErV_7l5zCCSbJsUoDSVlbY7fw)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/ResponderRole-Template.yaml?versionId=WupR4..ErV_7l5zCCSbJsUoDSVlbY7fw) @@ -355,6 +378,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/SESRuleToSlack-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (acPO1WjSGsIhZWQ9ErUNYSm3JRvweu6Z)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=acPO1WjSGsIhZWQ9ErUNYSm3JRvweu6Z) * [2023-12-09 14:54:58+00:00 (Lp7hMFSJuzidadh9h_SO9vP8N7l6bB6S)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=Lp7hMFSJuzidadh9h_SO9vP8N7l6bB6S) * [2023-12-09 14:45:42+00:00 (rGXW7l7q4CWLvBaabOvcmvrbeYYfJj_t)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=rGXW7l7q4CWLvBaabOvcmvrbeYYfJj_t) * [2023-12-09 14:38:03+00:00 (z4IX5gfJ9ConJ5R2qhrCOGYhgoR6_fEZ)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SESRuleToSlack-Template.yaml?versionId=z4IX5gfJ9ConJ5R2qhrCOGYhgoR6_fEZ) @@ -368,6 +392,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/SecurityAlertChatBot-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (xK8YCaa21u3ApOR08_bZPW.46nB6jral)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=xK8YCaa21u3ApOR08_bZPW.46nB6jral) * [2023-12-09 14:54:58+00:00 (WPMJknkz6Up..3Rg0a1CybVMHXRdibjf)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=WPMJknkz6Up..3Rg0a1CybVMHXRdibjf) * [2023-12-09 14:45:42+00:00 (5NP0MOCjoK8iyrDU1lliCAJlSORMG11N)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=5NP0MOCjoK8iyrDU1lliCAJlSORMG11N) * [2023-12-09 14:38:03+00:00 (0Pgne2CCCf1ZAsL9P7LwaxnACYW9U3Sf)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityAlertChatBot-Template.yaml?versionId=0Pgne2CCCf1ZAsL9P7LwaxnACYW9U3Sf) @@ -381,6 +406,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/SecurityRole-StackSetTemplate.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (9nEi99ODioPQp3Y2LRm7VXZHcrvMnHwi)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=9nEi99ODioPQp3Y2LRm7VXZHcrvMnHwi) * [2023-12-09 14:54:58+00:00 (FFBbg8Lth61lPDuTjw27dr2TXK.RgYro)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=FFBbg8Lth61lPDuTjw27dr2TXK.RgYro) * [2023-12-09 14:45:42+00:00 (LTtsvioZUVMTWFLw.p8IyYMvnNYrFKvy)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=LTtsvioZUVMTWFLw.p8IyYMvnNYrFKvy) * [2023-12-09 14:38:03+00:00 (K7cSvvE3Ip4sP6Q6d2nJ5VXSg711NAWB)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/SecurityRole-StackSetTemplate.yaml?versionId=K7cSvvE3Ip4sP6Q6d2nJ5VXSg711NAWB) @@ -394,6 +420,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/VPCFlowLogBucket-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (KNJdsga2UcekU9KhO8JRwdz6olt7AlYq)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=KNJdsga2UcekU9KhO8JRwdz6olt7AlYq) * [2023-12-09 14:54:58+00:00 (n1agqHZhxDwM7Xf390fth9pW5INOQhJU)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=n1agqHZhxDwM7Xf390fth9pW5INOQhJU) * [2023-12-09 14:45:42+00:00 (tEDiPutq0RLXQYsDhUS6Bd0ZexX1_Ims)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=tEDiPutq0RLXQYsDhUS6Bd0ZexX1_Ims) * [2023-12-09 14:38:03+00:00 (q_jsXctWZ3ivF43kzdzCn.n5SGMtUV6I)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/VPCFlowLogBucket-Template.yaml?versionId=q_jsXctWZ3ivF43kzdzCn.n5SGMtUV6I) @@ -407,6 +434,7 @@ * [HTTP URL (latest)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml) * S3 URL (latest) - s3://pht-cloudformation-dev/aws-account-automation/requireMFA-Template.yaml * Previous Version HTTP URLs: + * [2023-12-09 14:56:35+00:00 (qp4a_EKfZAqxzlx3SxC.1DkwiHXrl3.g)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=qp4a_EKfZAqxzlx3SxC.1DkwiHXrl3.g) * [2023-12-09 14:54:58+00:00 (26hU6d0s4PALK0QuymP0Fj2fRayROPWP)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=26hU6d0s4PALK0QuymP0Fj2fRayROPWP) * [2023-12-09 14:45:42+00:00 (231wZOOEzlyNxUBtgkfwrEPLHZwpkKCe)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=231wZOOEzlyNxUBtgkfwrEPLHZwpkKCe) * [2023-12-09 14:38:03+00:00 (k7YGhusMqm7huK5I9UwAHBd_uzhHXtaI)](https://pht-cloudformation-dev.s3.amazonaws.com/aws-account-automation/requireMFA-Template.yaml?versionId=k7YGhusMqm7huK5I9UwAHBd_uzhHXtaI)