Skip to content

Commit

Permalink
improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsweetman committed Jul 17, 2024
1 parent 3a012a0 commit 96de2cf
Showing 1 changed file with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ locals {

ec2_instances = {

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-cms-a = merge(local.bip_ec2_default, {
#cloudwatch_metric_alarms = local.bip_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.bip_ec2_default.config, {
Expand All @@ -53,7 +53,7 @@ locals {
})
})

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-cms-b = merge(local.bip_ec2_default, {
#cloudwatch_metric_alarms = local.bip_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.bip_ec2_default.config, {
Expand Down Expand Up @@ -115,7 +115,7 @@ locals {
})
})

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-client-a = merge(local.jumpserver_ec2_default, {
# cloudwatch_metric_alarms = local.client_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.jumpserver_ec2_default.config, {
Expand All @@ -135,7 +135,7 @@ locals {
})
})

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-etl-1-a = merge(local.etl_ec2_default, {
# cloudwatch_metric_alarms = local.etl_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.etl_ec2_default.config, {
Expand All @@ -155,7 +155,7 @@ locals {
})
})

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-etl-2-b = merge(local.etl_ec2_default, {
# cloudwatch_metric_alarms = local.etl_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.etl_ec2_default.config, {
Expand All @@ -175,7 +175,7 @@ locals {
})
})

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-processing-1-a = merge(local.bip_ec2_default, {
# cloudwatch_metric_alarms = local.bip_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.bip_ec2_default.config, {
Expand All @@ -197,7 +197,7 @@ locals {
})
})

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-processing-2-b = merge(local.bip_ec2_default, {
# cloudwatch_metric_alarms = local.bip_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.bip_ec2_default.config, {
Expand All @@ -219,7 +219,7 @@ locals {
})
})

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-processing-3-c = merge(local.bip_ec2_default, {
# cloudwatch_metric_alarms = local.bip_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.bip_ec2_default.config, {
Expand All @@ -241,7 +241,7 @@ locals {
})
})

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-processing-4-a = merge(local.bip_ec2_default, {
# cloudwatch_metric_alarms = local.bip_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.bip_ec2_default.config, {
Expand All @@ -263,7 +263,7 @@ locals {
})
})

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-web-1-a = merge(local.web_ec2_default, {
# cloudwatch_metric_alarms = local.web_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.web_ec2_default.config, {
Expand All @@ -283,7 +283,7 @@ locals {
})
})

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-web-2-b = merge(local.web_ec2_default, {
# cloudwatch_metric_alarms = local.web_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.web_ec2_default.config, {
Expand All @@ -303,7 +303,7 @@ locals {
})
})

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-web-3-c = merge(local.web_ec2_default, {
# cloudwatch_metric_alarms = local.web_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.web_ec2_default.config, {
Expand All @@ -323,7 +323,7 @@ locals {
})
})

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-web-4-a = merge(local.web_ec2_default, {
# cloudwatch_metric_alarms = local.web_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.web_ec2_default.config, {
Expand All @@ -343,7 +343,7 @@ locals {
})
})

# Comment out ahead of deployment
# Comment out till needed for deployment
pd-ncr-web-admin-a = merge(local.web_ec2_default, {
# cloudwatch_metric_alarms = local.web_cloudwatch_metric_alarms # comment in when commissioned
config = merge(local.web_ec2_default.config, {
Expand All @@ -364,7 +364,7 @@ locals {
})
}

# Comment out ahead of deployment
# Comment out till needed for deployment
efs = {
pd-ncr-sap-share = {
access_points = {
Expand Down Expand Up @@ -554,8 +554,8 @@ locals {
secretsmanager_secrets = {
"/ec2/ncr-bip/pd" = local.bip_secretsmanager_secrets
"/ec2/ncr-web/pd" = local.web_secretsmanager_secrets
"/oracle/database/PDBIPSYS" = local.database_secretsmanager_secrets
"/oracle/database/PDBIPAUD" = local.database_secretsmanager_secrets
"/oracle/database/PDBIPSYS" = local.database_secretsmanager_secrets # Azure Live System DB
"/oracle/database/PDBIPAUD" = local.database_secretsmanager_secrets # Azure Live Audit DB
"/oracle/database/PDBISYS" = local.database_secretsmanager_secrets
"/oracle/database/PDBIAUD" = local.database_secretsmanager_secrets
}
Expand Down

0 comments on commit 96de2cf

Please sign in to comment.