Ever wanted to access AWS services from Google Kubernetes cluster (GKE) without using AWS IAM credentials?
This solution can help you to get and exchange Google OIDC token for temporary AWS IAM security credentials are generated by AWS STS service. This approach allows you to access AWS services form GKE cluster without pre-generated long-living AWS credentials.
Read more about this solution on DoiT Securely Access AWS Services from Google Kubernetes Engine (GKE) blog post.
The gtoken
tool can get Google Cloud ID token when running with under GCP Service Account (for example, GKE Pod with Workload Identity).
NAME:
gtoken - generate ID token with current Google Cloud service account
USAGE:
gtoken [global options] command [command options] [arguments...]
COMMANDS:
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--refresh auto refresh ID token before it expires (default: true)
--file value write ID token into file (stdout, if not specified)
--help, -h show help (default: false)
--version, -v print the version
The gtoken-webhook
is a Kubernetes mutating admission webhook, that mutates any K8s Pod running under specially annotated Kubernetes Service Account (see details below).
The gtoken-webhook
injects a gtoken
initContainer
into a target Pod and an additional gtoken
sidekick container (to refresh an ID OIDC token a moment before expiration), mounts token volume and injects three AWS-specific environment variables. The gtoken
container generates a valid GCP OIDC ID Token and writes it to the token volume.
Injected AWS environment variables:
AWS_WEB_IDENTITY_TOKEN_FILE
- the path to the web identity token file (OIDC ID token)AWS_ROLE_ARN
- the ARN of the role to assume by Pod containersAWS_ROLE_SESSION_NAME
- the name applied to this assume-role session
The AWS SDK will automatically make the corresponding AssumeRoleWithWebIdentity
calls to AWS STS on your behalf. It will handle in memory caching as well as refreshing credentials as needed.
- To deploy the
gtoken-webhook
server, we need to create a webhook service and a deployment in our Kubernetes cluster. It’s pretty straightforward, except one thing, which is the server’s TLS configuration. If you’d care to examine the deployment.yaml file, you’ll find that the certificate and corresponding private key files are read from command line arguments, and that the path to these files comes from a volume mount that points to a Kubernetes secret:
[...]
args:
[...]
- --tls-cert-file=/etc/webhook/certs/cert.pem
- --tls-private-key-file=/etc/webhook/certs/key.pem
volumeMounts:
- name: webhook-certs
mountPath: /etc/webhook/certs
readOnly: true
[...]
volumes:
- name: webhook-certs
secret:
secretName: gtoken-webhook-certs
The most important thing to remember is to set the corresponding CA certificate later in the webhook configuration, so the apiserver
will know that it should be accepted. For now, we’ll reuse the script originally written by the Istio team to generate a certificate signing request. Then we’ll send the request to the Kubernetes API, fetch the certificate, and create the required secret from the result.
First, run webhook-create-signed-cert.sh script and check if the secret holding the certificate and key has been created:
./deployment/webhook-create-signed-cert.sh
creating certs in tmpdir /var/folders/vl/gxsw2kf13jsf7s8xrqzcybb00000gp/T/tmp.xsatrckI71
Generating RSA private key, 2048 bit long modulus
.........................+++
....................+++
e is 65537 (0x10001)
certificatesigningrequest.certificates.k8s.io/gtoken-webhook-svc.default created
NAME AGE REQUESTOR CONDITION
gtoken-webhook-svc.default 1s [email protected] Pending
certificatesigningrequest.certificates.k8s.io/gtoken-webhook-svc.default approved
secret/gtoken-webhook-certs configured
Once the secret is created, we can create deployment and service. These are standard Kubernetes deployment and service resources. Up until this point we’ve produced nothing but an HTTP server that’s accepting requests through a service on port 443:
kubectl create -f deployment/deployment.yaml
kubectl create -f deployment/service.yaml
Now that our webhook server is running, it can accept requests from the apiserver
. However, we should create some configuration resources in Kubernetes first. Let’s start with our validating webhook, then we’ll configure the mutating webhook later. If you take a look at the webhook configuration, you’ll notice that it contains a placeholder for CA_BUNDLE
:
[...]
service:
name: gtoken-webhook-svc
namespace: default
path: "/pods"
caBundle: ${CA_BUNDLE}
[...]
There is a small script that substitutes the CA_BUNDLE placeholder in the configuration with this CA. Run this command before creating the validating webhook configuration:
cat ./deployment/mutatingwebhook.yaml | ./deployment/webhook-patch-ca-bundle.sh > ./deployment/mutatingwebhook-bundle.yaml
Create mutating webhook configuration:
kubectl create -f deployment/mutatingwebhook-bundle.yaml
Create Kubernetes Service Account to be used with gtoken-webhook
:
kubectl create -f deployment/service-account.yaml
Define RBAC permission for webhook service account:
# create a cluster role
kubectl create -f deployment/clusterrole.yaml
# define a cluster role binding
kubectl create 0f deployment/clusterrolebinding.yaml
PROJECT_ID
- GCP project IDCLUSTER_NAME
- GKE cluster nameGSA_NAME
- Google Cloud Service Account name (choose any)GSA_ID
- Google Cloud Service Account unique ID (generated by Google)KSA_NAME
- Kubernetes Service Account name (choose any)KSA_NAMESPACE
- Kubernetes namespaceAWS_ROLE_NAME
- AWS IAM role name (choose any)AWS_POLICY_NAME
- an AWS IAM policy to assign to IAM roleAWS_ROLE_ARN
- AWS IAM Role ARN identifier (generated by AWS)
Create a new GKE cluster with Workload Identity enabled:
gcloud beta container clusters create ${CLUSTER_NAME} --identity-namespace=${PROJECT_ID}.svc.id.goog
or update an existing cluster:
gcloud beta container clusters update ${CLUSTER_NAME} --identity-namespace=${PROJECT_ID}.svc.id.goog
Create Google Cloud Service Account:
# create GCP Service Account
gcloud iam service-accounts create ${GSA_NAME}
# get GCP SA UID to be used for AWS Role with Google OIDC Web Identity
GSA_ID=$(gcloud iam service-accounts describe --format json ${GSA_NAME}@${PROJECT_ID}.iam.gserviceaccount.com | jq -r '.uniqueId')
Update GSA_NAME
Google Service Account with following roles:
roles/iam.workloadIdentityUser
- impersonate service accounts from GKE Workloadsroles/iam.serviceAccountTokenCreator
- impersonate service accounts to create OAuth2 access tokens, sign blobs, or sign JWTs
gcloud projects add-iam-policy-binding ${PROJECT_ID} \
--member serviceAccount:${GSA_NAME}@${PROJECT_ID}.iam.gserviceaccount.com \
--role roles/iam.serviceAccountTokenCreator
gcloud iam service-accounts add-iam-policy-binding \
--role roles/iam.workloadIdentityUser \
--member "serviceAccount:${PROJECT_ID}.svc.id.goog[${K8S_NAMESPACE}/${KSA_NAME}]" \
${GSA_NAME}@${PROJECT_ID}.iam.gserviceaccount.com
# prepare role trust policy document for Google OIDC provider
cat > gcp-trust-policy.json << EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Federated": "accounts.google.com"
},
"Action": "sts:AssumeRoleWithWebIdentity",
"Condition": {
"StringEquals": {
"accounts.google.com:sub": "${GSA_SA}"
}
}
}
]
}
EOF
# create AWS IAM Rome with Google Web Identity
aws iam create-role --role-name ${AWS_ROLE_NAME} --assume-role-policy-document file://gcp-trust-policy.json
# assign AWS role desired policies
aws iam attach-role-policy --role-name ${AWS_ROLE_NAME} --policy-arn arn:aws:iam::aws:policy/${AWS_POLICY_NAME}
# get AWS Role ARN to be used in K8s SA annotation
AWS_ROLE_ARN=$(aws iam get-role --role-name ${ROLE_NAME} --query Role.Arn --output text)
Create K8s namespace:
kubectl create namespace ${K8S_NAMESPACE}
Create K8s Service Account:
kubectl create serviceaccount --namespace ${K8S_NAMESPACE} ${KSA_NAME}
Annotate K8s Service Account with GKE Workload Identity (GCP Service Account email)
kubectl annotate serviceaccount --namespace ${K8S_NAMESPACE} ${KSA_NAME}
iam.gke.io/gcp-service-account=${GSA_NAME}@${PROJECT_ID}.iam.gserviceaccount.com
Annotate K8s Service Account with AWS Role ARN:
kubectl annotate serviceaccount --namespace ${K8S_NAMESPACE} ${KSA_NAME}
amazonaws.com/role-arn=${AWS_ROLE_ARN}
Run a new K8s Pod with K8s ${KSA_NAME} Service Account:
# run a pod (with AWS CLI onboard) in interactive mod
kubectl run -it --rm --generator=run-pod/v1 --image mikesir87/aws-cli --serviceaccount ${KSA_NAME} test-pod
# in Pod shell: check AWS assumed role
aws sts get-caller-identity
# the output should look similar to below
{
"UserId": "AROA9GB4GPRFFXVHNSLCK:gtoken-webhook-gyaashbbeeqhpvfw",
"Account": "906385953612",
"Arn": "arn:aws:sts::906385953612:assumed-role/bucket-full-gtoken/gtoken-webhook-gyaashbbeeqhpvfw"
}
I've borrowed an initial mutating admission webhook code and deployment guide from banzaicloud/admission-webhook-example repository. Big thanks to Banzai Cloud team!