From d825f14ab40386b331391180e89db713d37fb644 Mon Sep 17 00:00:00 2001 From: Loren Gordon Date: Fri, 27 May 2022 07:17:23 -0700 Subject: [PATCH 1/2] Fixes typo admininstrator => administrator --- modules/cross-account-member/main.tf | 2 +- modules/cross-account-member/versions.tf | 2 +- tests/securityhub_cross_account/main.tf | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/cross-account-member/main.tf b/modules/cross-account-member/main.tf index 1988f7b..11371d5 100644 --- a/modules/cross-account-member/main.tf +++ b/modules/cross-account-member/main.tf @@ -12,7 +12,7 @@ module "member" { source = "../member" providers = { - aws = aws.admininstrator + aws = aws.administrator } account_id = module.account.account.id diff --git a/modules/cross-account-member/versions.tf b/modules/cross-account-member/versions.tf index 61546b3..41d8925 100644 --- a/modules/cross-account-member/versions.tf +++ b/modules/cross-account-member/versions.tf @@ -5,7 +5,7 @@ terraform { aws = { source = "hashicorp/aws" version = ">= 3.29.0" - configuration_aliases = [aws.admininstrator] + configuration_aliases = [aws.administrator] } } } diff --git a/tests/securityhub_cross_account/main.tf b/tests/securityhub_cross_account/main.tf index 4d57c78..b6c091f 100644 --- a/tests/securityhub_cross_account/main.tf +++ b/tests/securityhub_cross_account/main.tf @@ -7,7 +7,7 @@ provider "aws" { # Provider to use as the securityhub administrator provider "aws" { region = "us-east-1" - alias = "admininstrator" + alias = "administrator" profile = "awsalternate" # Profile must exist in your .aws/config } @@ -16,7 +16,7 @@ module "securityhub_owner" { source = "../../" providers = { - aws = aws.admininstrator + aws = aws.administrator } } @@ -24,7 +24,7 @@ module "securityhub" { source = "../../modules/cross-account-member" providers = { - aws.admininstrator = aws.admininstrator + aws.administrator = aws.administrator } # Without the following line it takes two attepts to destroy the resources created by the test From f80c1c6c28030ba3c281684cc6c3ce8bf8c32fce Mon Sep 17 00:00:00 2001 From: Loren Gordon Date: Fri, 27 May 2022 07:17:27 -0700 Subject: [PATCH 2/2] Bumps version to 3.0.1 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ab04341..beafd7c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.0 +current_version = 3.0.1 commit = True message = Bumps version to {new_version} tag = False diff --git a/CHANGELOG.md b/CHANGELOG.md index 77cbcbd..997453d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +### 3.0.1 + +**Released**: 2022.05.27 + +**Commit Delta**: [Change from 3.0.0 release](https://github.com/plus3it/terraform-aws-tardigrade-security-hub/compare/3.0.0...3.0.1) + +**Summary**: + +* Fixes typo in provider alias, admininstrator => administrator + ### 3.0.0 **Released**: 2022.05.13