* First working version including certificates and HTTPS. It uses a mix of self-managed certificates and the CA Service. * One CR service only behind the ILB * Functional deployment including auto-configuration A k8s job configures the root certificate, service and route in the admin api to reach the CR service via Kong proxy. * Admin API exposed internally only, and some cleanup * Some name changes * README * Remove data source for the vpc and subnet * Remove data source for Kubernetes services * Update README --------- Co-authored-by: Julio Castillo <jccb@google.com>
32 lines
954 B
HCL
32 lines
954 B
HCL
/**
|
|
* Copyright 2024 Google LLC
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
module "cloud_run" {
|
|
source = "../../../../modules/cloud-run-v2"
|
|
project_id = module.service-project.project_id
|
|
name = var.cloudrun_svcname
|
|
region = var.region
|
|
containers = {
|
|
default = {
|
|
image = var.image
|
|
}
|
|
}
|
|
iam = {
|
|
"roles/run.invoker" = ["allUsers"]
|
|
}
|
|
ingress = "INGRESS_TRAFFIC_INTERNAL_LOAD_BALANCER"
|
|
}
|