/* Copyright 2023 The Kubernetes Authors. 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. */ # This IAM configuration allows Prow GKE Clusters to assume a role on AWS. # Provisioning those resources for canary installation is skipped. # Recognize federated identities from the prow trusted cluster resource "aws_iam_openid_connect_provider" "k8s_infra_prow" { count = local.configure_prow ? 1 : 0 url = "https://container.googleapis.com/v1/projects/k8s-infra-prow/locations/us-central1/clusters/prow" client_id_list = ["sts.amazonaws.com"] thumbprint_list = ["08745487e891c19e3078c1f2a07e452950ef36f6"] } resource "aws_iam_openid_connect_provider" "gke_utility_cluster" { url = "https://container.googleapis.com/v1/projects/k8s-infra-prow/locations/us-central1/clusters/utility" client_id_list = ["sts.amazonaws.com"] thumbprint_list = ["08745487e891c19e3078c1f2a07e452950ef36f6"] }