Skip to content

Commit

Permalink
Merge pull request #11 from monte-carlo-data/pchawla/mes-361-add-a-bu…
Browse files Browse the repository at this point in the history
…tton-to-launch-nested-stack-for-aws-networking-agent

Update description to use the versioned platform nomenclature
  • Loading branch information
pxc-dev authored Jul 8, 2024
2 parents 4eca59d + 51a6fdb commit 758605d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
7 changes: 3 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ variable "image" {

variable "cloud_account_id" {
description = <<EOF
The service that invokes the agent is being migrated to the AWS Account with ID: 590183797493.
For accounts created after April 24th, 2024 select 590183797493, for previously created
accounts select the Monte Carlo account your collection service is hosted in.
This can be found in the 'settings/integrations/collectors' tab on the UI or via the 'montecarlo collectors list' command on the CLI.
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.
EOF
type = string
default = "190812797848"
Expand Down

0 comments on commit 758605d

Please sign in to comment.