cloud-foundation-fabric/examples/gke-serverless/multitenant-fleet/main.tf

81 lines
2.6 KiB
Terraform
Raw Normal View History

/**
* Copyright 2022 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 "gke-project-0" {
2022-08-10 06:37:20 -07:00
source = "../../../modules/project"
billing_account = var.billing_account_id
name = var.project_id
parent = var.folder_id
prefix = var.prefix
2022-06-30 11:20:14 -07:00
group_iam = var.group_iam
2022-07-30 07:05:39 -07:00
iam = var.iam
labels = var.labels
2022-07-29 05:01:35 -07:00
services = concat(
[
"cloudresourcemanager.googleapis.com",
"container.googleapis.com",
"dns.googleapis.com",
"iam.googleapis.com",
"stackdriver.googleapis.com",
],
var.project_services,
2022-07-29 05:01:35 -07:00
!local.fleet_enabled ? [] : [
"anthosconfigmanagement.googleapis.com",
"anthos.googleapis.com",
"gkeconnect.googleapis.com",
"gkehub.googleapis.com",
"multiclusteringress.googleapis.com",
"multiclusterservicediscovery.googleapis.com",
"trafficdirector.googleapis.com"
]
)
shared_vpc_service_config = {
attach = true
host_project = var.vpc_config.host_project_id
2022-07-29 02:31:34 -07:00
service_identity_iam = merge({
2022-02-09 09:10:35 -08:00
"roles/compute.networkUser" = [
"cloudservices", "container-engine"
]
"roles/container.hostServiceAgentUser" = [
"container-engine"
]
2022-07-29 02:31:34 -07:00
},
!local.fleet_mcs_enabled ? {} : {
"roles/multiclusterservicediscovery.serviceAgent" = ["gke-mcs"]
"roles/compute.networkViewer" = ["gke-mcs-importer"]
})
}
2022-02-09 09:10:35 -08:00
# specify project-level org policies here if you need them
# policy_boolean = {
# "constraints/compute.disableGuestAttributesAccess" = true
# }
# policy_list = {
# "constraints/compute.trustedImageProjects" = {
# inherit_from_parent = null
# suggested_value = null
# status = true
# values = ["projects/fl01-prod-iac-core-0"]
# }
# }
}
module "gke-dataset-resource-usage" {
2022-08-10 06:37:20 -07:00
source = "../../../modules/bigquery-dataset"
project_id = module.gke-project-0.project_id
2022-03-08 14:08:49 -08:00
id = "gke_resource_usage"
friendly_name = "GKE resource usage."
}