From e837e5d737960ac4977e22cb5b16a15e2c81d174 Mon Sep 17 00:00:00 2001 From: NBIX-Robert-Suarez <144182702+NBIX-Robert-Suarez@users.noreply.github.com> Date: Mon, 21 Oct 2024 18:05:18 -0500 Subject: [PATCH 1/5] Update outputs.tf Adding execution role to the outputs --- outputs.tf | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index 6e9ff78..dcd93c7 100644 --- a/outputs.tf +++ b/outputs.tf @@ -21,4 +21,9 @@ output "mcd_agent_security_group_name" { output "mcd_agent_storage_bucket_arn" { value = aws_s3_bucket.mcd_agent_store.arn description = "Storage bucket ARN." -} \ No newline at end of file +} + +output "mcd_agent_execution_role" { + value = aws_iam_role.mcd_agent_service_execution_role + description = "The execution role for the in the customer account Lambda" +} From 354618949953560d38d87cc5e030cb0edb77ca53 Mon Sep 17 00:00:00 2001 From: NBIX-Robert-Suarez <144182702+NBIX-Robert-Suarez@users.noreply.github.com> Date: Tue, 22 Oct 2024 07:28:07 -0500 Subject: [PATCH 2/5] Update main.tf Updating the wrapper version --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 54d7ae1..11876e9 100644 --- a/main.tf +++ b/main.tf @@ -1,6 +1,6 @@ locals { # Wrapper metadata - mcd_wrapper_version = "1.0.0" + mcd_wrapper_version = "1.0.1" mcd_agent_platform = "AWS" mcd_agent_service_name = "REMOTE_AGENT" mcd_agent_deployment_type = "TERRAFORM" From b790af51c4cb29d22fba733c4cbf17846894eb43 Mon Sep 17 00:00:00 2001 From: NBIX-Robert-Suarez <144182702+NBIX-Robert-Suarez@users.noreply.github.com> Date: Tue, 22 Oct 2024 07:31:22 -0500 Subject: [PATCH 3/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 40fbce1..d56c11f 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,7 @@ documentation. | mcd_agent_invoker_role_external_id | Assumable role External ID. To be used in registering. | | mcd_agent_security_group_name | Security group ID. | | mcd_agent_storage_bucket_arn | Storage bucket ARN. | +| mcd_agent_execution_role | The role the MCD agent will use to execute actions | ## Releases and Development From 7d6f5008cc5748b12d1dc4a126a2e033ac89ca61 Mon Sep 17 00:00:00 2001 From: Prateek <56234509+pxc-dev@users.noreply.github.com> Date: Wed, 23 Oct 2024 18:01:48 -0700 Subject: [PATCH 4/5] Apply Terraform formatting and make descriptions consistent --- README.md | 2 +- outputs.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d56c11f..c30663e 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ documentation. | mcd_agent_invoker_role_external_id | Assumable role External ID. To be used in registering. | | mcd_agent_security_group_name | Security group ID. | | mcd_agent_storage_bucket_arn | Storage bucket ARN. | -| mcd_agent_execution_role | The role the MCD agent will use to execute actions | +| mcd_agent_execution_role | The role the MCD agent will use to execute actions. | ## Releases and Development diff --git a/outputs.tf b/outputs.tf index dcd93c7..d724200 100644 --- a/outputs.tf +++ b/outputs.tf @@ -24,6 +24,6 @@ output "mcd_agent_storage_bucket_arn" { } output "mcd_agent_execution_role" { - value = aws_iam_role.mcd_agent_service_execution_role - description = "The execution role for the in the customer account Lambda" + value = aws_iam_role.mcd_agent_service_execution_role + description = "The role the MCD agent will use to execute actions." } From 7e4e95fee2eab16b1f11f05d9b7c61ce3aa6a56b Mon Sep 17 00:00:00 2001 From: Prateek <56234509+pxc-dev@users.noreply.github.com> Date: Wed, 23 Oct 2024 18:07:18 -0700 Subject: [PATCH 5/5] Empty commit to kick off CI