Skip to content
Open
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
1 change: 1 addition & 0 deletions k8s/providers/hetzner/apps/aws/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ rules:
- iam.aws.m.upbound.io
resources:
- openidconnectproviders
- policies
- roles
verbs:
- get
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# provider-aws-iam declares SafeStart, so its ManagedResourceDefinitions
# install Inactive. Activate only the namespaced IAM kinds required by the
# default-off EKS CI identity slice (platform#2564 / platform#2326). The role
# carries its least-privilege permissions as an inline policy, avoiding the
# separate Policy and RolePolicyAttachment CRDs and their apiserver/RBAC cost.
# carries its least-privilege permissions as an inline policy; the single
# Policy kind is activated for the eks-ci-smoke-boundary permissions boundary
# (aws#4 security hardening: roles the CI principal creates must carry a
# boundary, so it cannot mint-and-pass an unbounded role). Broad
# Policy/RolePolicyAttachment use stays deliberately off.
---
apiVersion: apiextensions.crossplane.io/v1alpha1
kind: ManagedResourceActivationPolicy
Expand All @@ -11,4 +14,5 @@ metadata:
spec:
activate:
- openidconnectproviders.iam.aws.m.upbound.io
- policies.iam.aws.m.upbound.io
- roles.iam.aws.m.upbound.io
Loading