From 5dc9ec0310689f6458b1d43db8eb821e2f91a3da Mon Sep 17 00:00:00 2001 From: Prateek <56234509+pxc-dev@users.noreply.github.com> Date: Wed, 3 Jul 2024 20:18:31 -0700 Subject: [PATCH 1/2] Update description to use the versioned platform nomenclature --- variables.tf | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/variables.tf b/variables.tf index a72140d..f891699 100644 --- a/variables.tf +++ b/variables.tf @@ -6,10 +6,9 @@ variable "image" { variable "cloud_account_id" { description = < Date: Wed, 3 Jul 2024 20:20:53 -0700 Subject: [PATCH 2/2] Bump wrapper version and update readme to include the new description for the cloud_account_id --- README.md | 2 +- main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7423671..1f9869a 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ documentation. | **Name** | **Description** | **Type** | **Default** | |-------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------|-------------------------------------------------------| | image | URI of the Agent container image (ECR Repo). Note that the region is automatically derived from the region variable. | string | 590183797493.dkr.ecr.*.amazonaws.com/mcd-agent:latest | -| cloud_account_id | Select the Monte Carlo account your collection service is hosted in. This can be found in the '[settings/integrations/collectors](https://getmontecarlo.com/settings/integrations/collectors)' tab on the UI or via the '[montecarlo collectors list](https://clidocs.getmontecarlo.com/#montecarlo-collectors-list)' command on the CLI | string | 190812797848 | +| cloud_account_id | For deployments on the V2 Platform, use 590183797493. Accounts created after April 24th, 2024, will automatically be on the V2 platform or newer. If you are using an older version of the platform, please contact your Monte Carlo representative for the ID. | string | 190812797848 | | private_subnets | Optionally connect the agent to a VPC by specifying at least two private subnet IDs in that VPC. | list(string) | [] | | region | The AWS region to deploy the agent into. | string | us-east-1 | | remote_upgradable | Allow the agent image and configuration to be remotely upgraded by Monte Carlo. Note that this sets a lifecycle to ignore any changes in Terraform to the image used after the initial deployment. If not set to 'true' you will be responsible for upgrading the image (e.g. specifying a new tag) for any bug fixes and improvements. Changing this value after initial deployment might replace your agent and require (re)registration. | bool | true | diff --git a/main.tf b/main.tf index 79d1a0e..1ae6611 100644 --- a/main.tf +++ b/main.tf @@ -1,6 +1,6 @@ locals { # Wrapper metadata - mcd_wrapper_version = "0.1.5" + mcd_wrapper_version = "0.1.6" mcd_agent_platform = "AWS" mcd_agent_service_name = "REMOTE_AGENT" mcd_agent_deployment_type = "TERRAFORM"