Skip to content

Commit

Permalink
removed service
Browse files Browse the repository at this point in the history
  • Loading branch information
martynipratt committed Nov 22, 2023
1 parent 54b753c commit 9133961
Show file tree
Hide file tree
Showing 16 changed files with 0 additions and 26 deletions.
2 changes: 0 additions & 2 deletions terraform/deployments/cloudfront/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,6 @@ resource "aws_cloudfront_distribution" "www_distribution" {
tags = {
Product = "GOV.UK"
System = "Cloudfront"
Service = "Content Delivery"
Environment = "${var.govuk_environment}"
Owner = "reliability-engineering@digital.cabinet-office.gov.uk"
}
Expand Down Expand Up @@ -459,7 +458,6 @@ resource "aws_cloudfront_distribution" "assets_distribution" {
tags = {
Product = "GOV.UK"
System = "Cloudfront"
Service = "Content Delivery"
Environment = "${var.govuk_environment}"
Owner = "reliability-engineering@digital.cabinet-office.gov.uk"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ resource "aws_efs_file_system" "clamav-db" {
tags = {
Product = "GOV.UK"
System = "Clamav Database"
Service = "Antivirus Database"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Description = "EFS where Clamav virus signature database is stored"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ resource "aws_acm_certificate" "cluster_public" {
Name = local.external_dns_zone_name
Product = "GOV.UK"
System = "EKS"
Service = "EKS Cluster Certificate"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
}
Expand Down
1 change: 0 additions & 1 deletion terraform/deployments/cluster-infrastructure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ provider "aws" {
tags = {
Product = "GOV.UK"
System = "EKS Cluster"
Service = "Container hosting"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
cluster = var.cluster_name
Expand Down
8 changes: 0 additions & 8 deletions terraform/deployments/cluster-infrastructure/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ resource "aws_subnet" "eks_control_plane" {
tags = {
Product = "GOV.UK"
System = "EKS Control Plane VPC"
Service = "EKS Network"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "${var.cluster_name}-eks-control-plane-${each.key}"
Expand All @@ -45,7 +44,6 @@ resource "aws_route_table" "eks_control_plane" {
tags = {
Product = "GOV.UK"
System = "EKS Control Plane Subnet"
Service = "EKS Network"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "${var.cluster_name}-eks-control-plane-${each.key}"
Expand Down Expand Up @@ -82,7 +80,6 @@ resource "aws_subnet" "eks_public" {
tags = {
Product = "GOV.UK"
System = "EKS Public Subnet"
Service = "EKS Network"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "${var.cluster_name}-eks-public-${each.key}"
Expand All @@ -98,7 +95,6 @@ resource "aws_route_table" "eks_public" {
tags = {
Product = "GOV.UK"
System = "EKS Public VPC"
Service = "EKS Network"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "${var.cluster_name}-eks-public"
Expand Down Expand Up @@ -126,7 +122,6 @@ resource "aws_eip" "eks_nat" {
tags = {
Product = "GOV.UK"
System = "EKS NAT Public Subnet"
Service = "EKS Network"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "${var.cluster_name}-eks-nat-${each.key}"
Expand All @@ -141,7 +136,6 @@ resource "aws_nat_gateway" "eks" {
tags = {
Product = "GOV.UK"
System = "EKS NAT Gateway"
Service = "EKS Network"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "${var.cluster_name}-eks-${each.key}"
Expand All @@ -161,7 +155,6 @@ resource "aws_subnet" "eks_private" {
tags = {
Product = "GOV.UK"
System = "EKS Private Subnet"
Service = "EKS Network"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "${var.cluster_name}-eks-private-${each.key}"
Expand All @@ -177,7 +170,6 @@ resource "aws_route_table" "eks_private" {
tags = {
Product = "GOV.UK"
System = "EKS Private VPC"
Service = "EKS Network"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "${var.cluster_name}-eks-private-${each.key}"
Expand Down
1 change: 0 additions & 1 deletion terraform/deployments/datagovuk-infrastructure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ locals {
default_tags = {
Product = "DATA.GOV.UK"
System = "DATA.GOV.UK"
Service = "DATA.GOV.UK"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
project = "replatforming"
Expand Down
1 change: 0 additions & 1 deletion terraform/deployments/ecr/ecr-scan.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ resource "aws_sns_topic" "ecr_scan_topic" {
tags = {
Product = "GOV.UK"
System = "ECR Scan"
Service = "ECR Scan"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "ECR-Scan"
Expand Down
1 change: 0 additions & 1 deletion terraform/deployments/ecr/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ provider "aws" {
tags = {
Product = "GOV.UK"
System = "Elastic Container Registry"
Service = "Container image hosting"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
project = "replatforming"
Expand Down
1 change: 0 additions & 1 deletion terraform/deployments/github/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ provider "aws" {
tags = {
Product = "GOV.UK"
System = "Github"
Service = "Source code repository/CI pipeline"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
project = "replatforming"
repository = "govuk-infrastructure"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ resource "aws_s3_bucket" "app_assets" {
tags = {
Product = "GOV.UK"
System = "App assets"
Service = "App assets Object storage"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "App static assets for ${var.govuk_environment}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ resource "aws_security_group" "frontend_memcached" {
tags = {
Product = "GOV.UK"
System = "Frontend Memcached"
Service = "Frontend Memcached Security Group"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = local.frontend_memcached_name
Expand All @@ -36,7 +35,6 @@ resource "aws_elasticache_cluster" "frontend_memcached" {
tags = {
Product = "GOV.UK"
System = "Frontend Memcached"
Service = "Frontend Memcached"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = local.frontend_memcached_name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ resource "aws_s3_bucket" "location_api_import_csvs" {
tags = {
Product = "GOV.UK"
System = "Locations api"
Service = "Object storage"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "CSVs used for importing postcode information into Locations API in ${var.govuk_environment}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ resource "aws_s3_bucket" "publisher_csvs" {
tags = {
Product = "GOV.UK"
System = "Publisher"
Service = "Object storage"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "CSVs generated by Publisher in ${var.govuk_environment}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ resource "aws_s3_bucket" "search_analytics" {
tags = {
Product = "GOV.UK"
System = "Search analytics"
Service = "Object storage"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "Search analytics reports for ${var.govuk_environment}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ resource "aws_security_group" "eks_ingress_www_origin" {
tags = {
Product = "GOV.UK"
System = "EKS Ingress"
Service = "EKS Ingress Security Group"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
Name = "eks_ingress_www_origin"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ resource "aws_security_group" "shared_redis_cluster" {
Name = local.shared_redis_name
Product = "GOV.UK"
System = "Shared Redis"
Service = "Shared Redis Security Group"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
}
Expand All @@ -37,7 +36,6 @@ resource "aws_elasticache_replication_group" "shared_redis_cluster" {
Name = local.shared_redis_name
Product = "GOV.UK"
System = "Shared Redis"
Service = "Shared Redis ElastiCache Replication Group"
Environment = "${var.govuk_environment}"
Owner = "govuk-replatforming-team@digital.cabinet-office.gov.uk"
}
Expand Down

0 comments on commit 9133961

Please sign in to comment.