cds-snc / dns

DNS Configuration for domains managed by CDS
18 stars 15 forks source link

feat: add inspection.alpha.canada.ca subdomain delegation #371

Closed patheard closed 6 months ago

patheard commented 6 months ago

Summary

Add NS to delegate the inspection.alpha.canada.ca subdomain. This will be used by the CFIA AI Labratory team (#370)

Related

github-actions[bot] commented 6 months ago

DNS

✅   Terraform Init: success ✅   Terraform Validate: success ✅   Terraform Format: success ✅   Terraform Plan: success ✅   Conftest: success

Plan: 1 to add, 0 to change, 0 to destroy
Show summary | CHANGE | NAME | |--------|----------------------------------------------------| | add | `aws_route53_record.inspection-alpha-canada-ca-NS` |
Show plan ```terraform Resource actions are indicated with the following symbols: + create Terraform will perform the following actions: # aws_route53_record.inspection-alpha-canada-ca-NS will be created + resource "aws_route53_record" "inspection-alpha-canada-ca-NS" { + allow_overwrite = (known after apply) + fqdn = (known after apply) + id = (known after apply) + name = "inspection.alpha.canada.ca" + records = [ + "ns1-36.azure-dns.com.", + "ns2-36.azure-dns.net.", + "ns3-36.azure-dns.org.", + "ns4-36.azure-dns.info.", ] + ttl = 21600 + type = "NS" + zone_id = "Z33C47YI9EN8XL" } Plan: 1 to add, 0 to change, 0 to destroy. ───────────────────────────────────────────────────────────────────────────── Saved the plan to: plan.tfplan To perform exactly these actions, run the following command to apply: terraform apply "plan.tfplan" ```
Show Conftest results ```sh WARN - plan.json - main - Missing Common Tags: ["aws_route53_zone.alpha-canada-ca-public"] WARN - plan.json - main - Missing Common Tags: ["aws_route53_zone.cds-snc-ca-public"] WARN - plan.json - main - Missing Common Tags: ["aws_route53_zone.notification-canada-ca-public"] WARN - plan.json - main - Missing Common Tags: ["aws_route53_zone.platform-canada-ca-public"] 23 tests, 19 passed, 4 warnings, 0 failures, 0 exceptions ```