-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tagging #1803
Tagging #1803
Conversation
3849c20
to
43d2eb3
Compare
6d50c24
to
e6f5e1c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I started adding individual comments but gave up 😂 and the page got prety slow to respond with that many changes. (It'd make it easier to review if the formatting changes were included in a separate commit.)
Could you please update all instanced of Product
value from "GOVUK" to "GOV.UK" and Owner
value from [email protected]
to [email protected]
?
Platform Security and Reliability definitely owns backup buckets, mirrors, Fastly stuff but there's some follow up work to define owners all resources (Publishing Rabbit MQ and Search could have different owners). I'll add a card for it. For now it's probably ok to put Platform Engineering.
subnets = ["${data.terraform_remote_state.infra_networking.public_subnet_ids}"] | ||
security_groups = ["${data.terraform_remote_state.infra_security_groups.sg_apt_external_elb_id}"] | ||
alarm_actions = ["${data.terraform_remote_state.infra_monitoring.sns_topic_cloudwatch_alarms_arn}"] | ||
target_group_health_check_path = "/" | ||
target_group_health_check_matcher = "200-499" | ||
default_tags = "${map("Project", var.stackname, "aws_migration", "apt", "aws_environment", var.aws_environment)}" | ||
default_tags = map("Project", var.stackname, "aws_migration", "apt", "aws_environment", var.aws_environment, "Environment", var.aws_environment, "Product", "GOVUK", "Owner", "[email protected]") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
default_tags = map("Project", var.stackname, "aws_migration", "apt", "aws_environment", var.aws_environment, "Environment", var.aws_environment, "Product", "GOVUK", "Owner", "govuk-replatforming-team@digital.cabinet-office.gov.uk") | |
default_tags = map("Project", var.stackname, "aws_migration", "apt", "aws_environment", var.aws_environment, "Environment", var.aws_environment, "Product", "GOV.UK", "Owner", "govuk-platform-engineering@digital.cabinet-office.gov.uk") |
subnets = ["${data.terraform_remote_state.infra_networking.private_subnet_ids}"] | ||
security_groups = ["${data.terraform_remote_state.infra_security_groups.sg_apt_internal_elb_id}"] | ||
alarm_actions = ["${data.terraform_remote_state.infra_monitoring.sns_topic_cloudwatch_alarms_arn}"] | ||
target_group_health_check_path = "/" | ||
target_group_health_check_matcher = "200-499" | ||
default_tags = "${map("Project", var.stackname, "aws_migration", "apt", "aws_environment", var.aws_environment)}" | ||
default_tags = map("Project", var.stackname, "aws_migration", "apt", "aws_environment", var.aws_environment, "Environment", var.aws_environment, "Product", "GOVUK", "Owner", "[email protected]") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
default_tags = map("Project", var.stackname, "aws_migration", "apt", "aws_environment", var.aws_environment, "Environment", var.aws_environment, "Product", "GOVUK", "Owner", "govuk-replatforming-team@digital.cabinet-office.gov.uk") | |
default_tags = map("Project", var.stackname, "aws_migration", "apt", "aws_environment", var.aws_environment, "Environment", var.aws_environment, "Product", "GOV.UK", "Owner", "govuk-platform-engineering@digital.cabinet-office.gov.uk") |
evaluate_target_health = true | ||
} | ||
} | ||
|
||
module "apt" { | ||
source = "../../modules/aws/node_group" | ||
name = "${var.stackname}-apt" | ||
default_tags = "${map("Project", var.stackname, "aws_stackname", var.stackname, "aws_environment", var.aws_environment, "aws_migration", "apt", "aws_hostname", "apt-1")}" | ||
instance_subnet_ids = "${matchkeys(values(data.terraform_remote_state.infra_networking.private_subnet_names_ids_map), keys(data.terraform_remote_state.infra_networking.private_subnet_names_ids_map), list(var.apt_1_subnet))}" | ||
default_tags = map("Project", var.stackname, "aws_stackname", var.stackname, "aws_environment", var.aws_environment, "aws_migration", "apt", "aws_hostname", "apt-1", "Environment", var.aws_environment, "Product", "GOVUK", "Owner", "[email protected]") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
default_tags = map("Project", var.stackname, "aws_stackname", var.stackname, "aws_environment", var.aws_environment, "aws_migration", "apt", "aws_hostname", "apt-1", "Environment", var.aws_environment, "Product", "GOVUK", "Owner", "govuk-replatforming-team@digital.cabinet-office.gov.uk") | |
default_tags = map("Project", var.stackname, "aws_stackname", var.stackname, "aws_environment", var.aws_environment, "aws_migration", "apt", "aws_hostname", "apt-1", "Environment", var.aws_environment, "Product", "GOV.UK", "Owner", "govuk-platform-engineering@digital.cabinet-office.gov.uk") |
aws_stackname = var.stackname | ||
aws_environment = var.aws_environment | ||
Environment = var.aws_environment | ||
Product = "GOVUK" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Product = "GOVUK" | |
Product = "GOV.UK" | |
Owner = "[email protected]" |
"Product" = "GOVUK" | ||
"Owner" = "[email protected]" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Product" = "GOVUK" | |
"Owner" = "govuk-replatforming-team@digital.cabinet-office.gov.uk" | |
"Product" = "GOV.UK" | |
"Owner" = "govuk-platform-engineering@digital.cabinet-office.gov.uk" |
Product = "GOVUK" | ||
Owner = "[email protected]" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Product = "GOVUK" | |
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk" | |
Product = "GOV.UK" | |
Owner = "govuk-platform-security-reliability@digital.cabinet-office.gov.uk" |
Product = "GOVUK" | ||
Owner = "[email protected]" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Product = "GOVUK" | |
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk" | |
Product = "GOV.UK" | |
Owner = "govuk-platform-security-reliability@digital.cabinet-office.gov.uk" |
Product = "GOVUK" | ||
Owner = "[email protected]" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Product = "GOVUK" | |
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk" | |
Product = "GOV.UK" | |
Owner = "govuk-platform-security-reliability@digital.cabinet-office.gov.uk" |
Product = "GOVUK" | ||
Owner = "[email protected]" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Product = "GOVUK" | |
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk" | |
Product = "GOV.UK" | |
Owner = "govuk-platform-security-reliability@digital.cabinet-office.gov.uk" |
Product = "GOVUK" | ||
Owner = "[email protected]" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Product = "GOVUK" | |
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk" | |
Product = "GOV.UK" | |
Owner = "govuk-platform-security-reliability@digital.cabinet-office.gov.uk" |
Updated tagging as per https://gds-way.cloudapps.digital/manuals/aws-tagging.html