/* 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 file contains: - IAM role for prow.k8s.io control plane to assume specific permissions */ data "aws_iam_policy_document" "google_prow_trust_policy" { provider = aws.kops-infra-ci statement { effect = "Allow" actions = ["sts:AssumeRoleWithWebIdentity"] principals { type = "Federated" identifiers = [ aws_iam_openid_connect_provider.google_prow_idp.arn ] } condition { test = "StringEquals" variable = "container.googleapis.com/v1/projects/k8s-prow/locations/us-central1-f/clusters/prow:sub" values = [ "system:serviceaccount:default:config-bootstrapper", "system:serviceaccount:default:crier", "system:serviceaccount:default:sinker", "system:serviceaccount:default:prow-controller-manager", ] } } } // Ensure service accounts for the prow control plan can assume this role resource "aws_iam_role" "google_prow_trust_role" { provider = aws.kops-infra-ci name = "GoogleProwTrustRole" description = "" max_session_duration = 43200 assume_role_policy = data.aws_iam_policy_document.google_prow_trust_policy.json } // Leveraging EKS Pod Identity feature allow kOps prowjobs to run E2E tests data "aws_iam_policy_document" "eks_pod_identity_policy" { provider = aws.kops-infra-ci statement { effect = "Allow" principals { type = "Service" identifiers = ["pods.eks.amazonaws.com"] } actions = [ "sts:AssumeRole", "sts:TagSession" ] } } resource "aws_iam_role" "eks_pod_identity_role" { provider = aws.kops-infra-ci name = "EKSPodIdentityRole" assume_role_policy = data.aws_iam_policy_document.eks_pod_identity_policy.json } resource "aws_iam_role_policy_attachment" "eks_pod_identity_policy" { provider = aws.kops-infra-ci policy_arn = "arn:aws:iam::aws:policy/AdministratorAccess" role = aws_iam_role.eks_pod_identity_role.name } module "ci_iam_group" { providers = { aws = aws.kops-infra-ci } source = "terraform-aws-modules/iam/aws//modules/iam-group-with-policies" version = "~> 5.60" name = "ci-admins" group_users = [ module.kops_ci_user.iam_user_name, ] custom_group_policy_arns = [ "arn:aws:iam::aws:policy/AdministratorAccess", ] tags = var.tags } module "kops_ci_user" { providers = { aws = aws.kops-infra-ci } source = "terraform-aws-modules/iam/aws//modules/iam-user" version = "~> 5.60" name = "kops-ci-user" create_iam_user_login_profile = false create_iam_access_key = true force_destroy = true password_reset_required = false tags = var.tags }