Skip to content
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

remove gfw-pro branch of ogr to geojson converter #119

Merged
merged 1 commit into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,6 @@ resource "aws_api_gateway_deployment" "prod" {
jsonencode(module.gfw-guira.endpoints),
jsonencode(module.gfw-forma.endpoints),
jsonencode(module.gfw-ogr.endpoints),
jsonencode(module.gfw-ogr-gfw-pro.endpoints),
jsonencode(module.gfw-prodes.endpoints),
jsonencode(module.gfw-umd.endpoints),
jsonencode(module.gfw-user.endpoints),
Expand Down Expand Up @@ -971,23 +970,6 @@ module "gfw-ogr" {
]
}

module "gfw-ogr-gfw-pro" {
source = "./microservices/gfw-ogr-gfw-pro"
api_gateway = aws_api_gateway_rest_api.rw_api_gateway
cluster_ca = var.cluster_ca
cluster_endpoint = var.cluster_endpoint
cluster_name = var.cluster_name
x_rw_domain = var.x_rw_domain
vpc = var.vpc
vpc_link = aws_api_gateway_vpc_link.rw_api_apps_lb_vpc_link
v1_resource = module.v1_resource.aws_api_gateway_resource
connection_type = "VPC_LINK"
require_api_key = var.require_api_key

eks_asg_names = [
data.aws_autoscaling_groups.gfw_autoscaling_group.names.0
]
}

module "gfw-prodes" {
source = "./microservices/gfw-prodes"
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

10 changes: 0 additions & 10 deletions terraform-localstack/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ resource "aws_api_gateway_deployment" "prod" {
jsonencode(module.gfw-guira.endpoints),
jsonencode(module.gfw-forma.endpoints),
jsonencode(module.gfw-ogr.endpoints),
jsonencode(module.gfw-ogr-gfw-pro.endpoints),
jsonencode(module.gfw-prodes.endpoints),
jsonencode(module.gfw-umd.endpoints),
jsonencode(module.gfw-user.endpoints),
Expand Down Expand Up @@ -465,15 +464,6 @@ module "gfw-ogr" {
v2_resource = module.v2_resource.aws_api_gateway_resource
}

module "gfw-ogr-gfw-pro" {
source = "../terraform-k8s-infrastructure/modules/k8s_microservice_routing/microservices/gfw-ogr-gfw-pro"
api_gateway = aws_api_gateway_rest_api.rw_api_gateway
x_rw_domain = var.x_rw_domain
v1_resource = module.v1_resource.aws_api_gateway_resource
connection_type = "INTERNET"
target_url = var.microservice_host
}

module "gfw-prodes" {
source = "../terraform-k8s-infrastructure/modules/k8s_microservice_routing/microservices/gfw-prodes"
api_gateway = aws_api_gateway_rest_api.rw_api_gateway
Expand Down