provider-aws requires credentials to be provided in order to authenticate to the
AWS API. This can be done in one of the following ways:
- Using a base64-encoded static credentials in a Kubernetes
Secret. This is described in detail here. - Using IAM Roles for Kubernetes
ServiceAccounts. This functionality is only available when running Crossplane on EKS, and the feature has been enabled in the cluster. - Using kube2iam. This solution allows to avoid using static credentials with non-EKS cluster.
- Using
assumeRoleARNwith theprovider-awsto connect to other AWS accounts via one AWS account.
Using IAM Roles for ServiceAccounts requires some additional setup for the
time-being. The steps for enabling are described below. Many of the steps can
also be found in the AWS docs.
These steps assume you already have a running EKS cluster with a sufficiently large node pool.
- Connect to your EKS cluster
$ aws eks --region "${AWS_REGION}" update-kubeconfig --name "${CLUSTER_NAME}"- Get AWS account information
Get AWS account information and pick an IAM role name. These will be used to
setup an OIDC provider and inject credentials into the provider-aws controller
Pod.
$ AWS_ACCOUNT_ID=$(aws sts get-caller-identity --query "Account" --output text)
$ IAM_ROLE_NAME=provider-aws # name for IAM role, can be anything you want- Install Crossplane
Install Crossplane from stable channel:
$ helm repo add crossplane-stable https://charts.crossplane.io/stable
$ helm install crossplane --create-namespace --namespace crossplane-system crossplane-stable/crossplaneprovider-aws can be installed with the Crossplane CLI,
but we will do so manually so that we can also create and reference a
ControllerConfig:
$ cat <<EOF | kubectl apply -f -
apiVersion: pkg.crossplane.io/v1alpha1
kind: ControllerConfig
metadata:
name: aws-config
annotations:
eks.amazonaws.com/role-arn: arn:aws:iam::$AWS_ACCOUNT_ID:role/$IAM_ROLE_NAME
spec:
podSecurityContext:
fsGroup: 2000
---
apiVersion: pkg.crossplane.io/v1
kind: Provider
metadata:
name: provider-aws
spec:
package: crossplane/provider-aws:v${VERSION}
controllerConfigRef:
name: aws-config
EOF- Identify
provider-awsservice account
Make sure that the appropriate ServiceAccount exists:
$ kubectl get serviceaccounts -n crossplane-systemIf you used the install command above you should see a ServiceAccount in the
output named provider-aws-*. You should also see the provider-aws-*
controller Pod running if you execute kubectl get pods -n crossplane-system.
Set variables to match the name and namespace of this ServiceAccount:
$ SERVICE_ACCOUNT_NAMESPACE=crossplane-system
$ SERVICE_ACCOUNT_NAME=$(kubectl get providers.pkg.crossplane.io provider-aws -o jsonpath="{.status.currentRevision}")The variable
$SERVICE_ACCOUNT_NAMEcontains the defaultServiceAccountname and changes with every provider release.
- Create OIDC provider for cluster
If you do not have eksctl installed you may use the AWS Console:
$ eksctl utils associate-iam-oidc-provider \
--cluster "${CLUSTER_NAME}" \
--region "${AWS_REGION}" \
--approve- Create IAM Role that
provider-awswill use usingeksctl
Create IAM role with trust relationship:
$ eksctl create iamserviceaccount \
--cluster "${CLUSTER_NAME}" \
--region "${AWS_REGION}" \
--name="${SERVICE_ACCOUNT_NAME}" \
--namespace="${SERVICE_ACCOUNT_NAMESPACE}" \
--role-name="${IAM_ROLE_NAME}" \
--role-only \
--attach-policy-arn="arn:aws:iam::aws:policy/AdministratorAccess" \
--approve- Create IAM Role that
provider-awswill use manually (skip if you created IAM Role usingeksctl)
Set an variable that will be used in subsequent commands:
$ OIDC_PROVIDER=$(aws eks describe-cluster --name "${CLUSTER_NAME}" --region "${AWS_REGION}" --query "cluster.identity.oidc.issuer" --output text | sed -e "s/^https:\/\///")Create trust relationship for IAM role:
$ cat > trust.yaml <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Federated": "arn:aws:iam::${AWS_ACCOUNT_ID}:oidc-provider/${OIDC_PROVIDER}"
},
"Action": "sts:AssumeRoleWithWebIdentity",
"Condition": {
"StringLike": {
"${OIDC_PROVIDER}:sub": "system:serviceaccount:${SERVICE_ACCOUNT_NAMESPACE}:provider-aws-*"
}
}
}
]
}
EOFThe default
ServiceAccountname is the provider-aws revision and changes with every provider release. The conditional above wildcard matches the defaultServiceAccountname in order to keep the role consistent across provider releases.
The above policy assumes a service account name of provider-aws-*.
Create an IAM role:
$ aws iam create-role \
--role-name "${IAM_ROLE_NAME}" \
--assume-role-policy-document file://trust.json \
--description "IAM role for provider-aws"Associate a policy with the IAM role.
This example uses AdministratorAccess, but you should select a policy with
the minimum permissions required to provision your resources.
$ aws iam attach-role-policy --role-name "${IAM_ROLE_NAME}" --policy-arn=arn:aws:iam::aws:policy/AdministratorAccess- Create
ProviderConfig
Ensure that ProviderConfig resource kind was created:
$ kubectl explain providerconfig --api-version='aws.crossplane.io/v1beta1'To utilize those credentials to provision new resources, you must create a
ProviderConfig with InjectedIdentity in .spec.credentials.source:
$ cat <<EOF | kubectl apply -f -
apiVersion: aws.crossplane.io/v1beta1
kind: ProviderConfig
metadata:
name: aws-provider
spec:
credentials:
source: InjectedIdentity
EOFYou can now reference this ProviderConfig to provision any provider-aws
resources.
This guide assumes that you already have:
- Created a policy with the minimum permissions required to provision your resources
- Created an IAM role that AWS Provider will assume to interact with AWS
- Associated the policy to the IAM role
Please refer to the previous section for details about these prerequisites.
Let's say the role you created is: infra/k8s/crossplane.
- Deploy a ControllerConfig
Crossplane provides a ControllerConfig type that allows you to customize the Deployment of a provider’s controller Pod.
A ControllerConfig can be created and referenced by any number of Provider objects that wish to use its configuration.
Note: the kube2iam annotation must be under spec.metadata.annotations that will be added to the AWS provider Pod.
$ cat <<EOF | kubectl apply -f -
apiVersion: pkg.crossplane.io/v1alpha1
kind: ControllerConfig
metadata:
name: aws-config
spec:
metadata:
annotations:
# kube2iam annotation that will be added to the aws-provider defined in the next section
iam.amazonaws.com/role: cdsf/k8s/kube2iam-crossplane-integration
podSecurityContext:
fsGroup: 2000
EOF- Deploy the
Providerand aProviderConfig
The AWS Provider is referencing the ControllerConfig we deployed in the previous step.
The ProviderConfig configures how AWS controllers will connect to AWS API.
$ cat <<EOF | kubectl apply -f -
apiVersion: pkg.crossplane.io/v1
kind: Provider
metadata:
name: aws-provider
spec:
package: crossplane/provider-aws:${VERSION}
controllerConfigRef:
name: aws-config
---
apiVersion: aws.crossplane.io/v1beta1
kind: ProviderConfig
metadata:
name: default
spec:
credentials:
# Set source to 'InjectedIdentity' to be compliant with kube2iam behavior
source: InjectedIdentity
EOFNote: Because the name of the ProviderConfig is default it will be used by any managed resources that do not explicitly reference a ProviderConfig.
provider-aws will be configured to connect to AWS Account A via InjectedIdentity,
request temporary security credentials, and then setting RoleARN to assume
a role in AWS Account B to manage the resources within AWS Account B.
The first thing that needs to be done is to create an IAM role within AWS Account B that provider-aws will Assume into.
- From within the AWS console of AWS Account B, navigate to
IAM > Roles > Create role > Another AWS account.- Enter the Account ID of Account A (the account
provider-awswill callroleARNfrom). - (Optional) Check the box for
Require external ID. This ensures requests coming from Account A can only use 'assumeRoleARN' if these requests pass the specifiedexternalID.
- Enter the Account ID of Account A (the account
Next, the provider-aws must be configured to use assumeRole.
The code snippet below shows how to configure provider-aws to connect to
AWS Account A and assumeRole into a role within AWS Account B.
$ cat <<EOF | kubectl apply -f -
apiVersion: aws.crossplane.io/v1beta1
kind: ProviderConfig
metadata:
name: account-b
spec:
assumeRole:
roleARN: "arn:aws:iam::999999999999:role/account_b"
externalID: "my-optional-id"
credentials:
source: InjectedIdentity
EOFSession tags and TransitiveKey tags are supported (see https://docs.aws.amazon.com/IAM/latest/UserGuide/id_session-tags.html).
$ cat <<EOF | kubectl apply -f -
apiVersion: aws.crossplane.io/v1beta1
kind: ProviderConfig
metadata:
name: account-b
spec:
assumeRole:
roleARN: "arn:aws:iam::999999999999:role/account_b"
externalID: "my-optional-id"
tags:
- key: Project
value: Crossplane
- key: Department
value: Infrastructure
transitiveTagKeys: [ "Project", "Department"]
credentials:
source: InjectedIdentity
EOFprovider-aws will be configured to connect to the aws account in RoleARN and request
a session for RoleARN using it's InjectedIdentity
This is most useful when "sts chaining" (see Using assumeRole)
is not allowed between accounts or when cross account IRSA is more suitable.
IRSA will need to be configured between the account hosting the RoleARN being targeted and the
K8s cluster hosting the provider pod.
The following steps follow on to the initial configuration from
Using IAM Roles for ServiceAccounts
Please see that section for more info on the initial setup of IRSA.
- Get AWS account information for account hosting the provider pod
Starting with your credentials for the account hosting the provider pod get AWS account information.
$ PROVIDER_POD_AWS_ACCOUNT_ID=$(aws sts get-caller-identity --query "Account" --output text)
$ PROVIDER_POD_REGION=us-west-2Set the EKS cluster name for the cluster hosting the provider pod
$ aws eks list-clusters
{
"clusters": [
"crossplane-k5dft"
]
}
$ PROVIDER_POD_CLUSTER_NAME="crossplane-k5dft"- Identify
provider-awsservice account
Set current kubectl context to provider pod cluster
$ aws eks update-kubeconfig --name $PROVIDER_POD_CLUSTER_NAMENOTE: If you are using the Upbound UXP distrobution of crossplane you may need to use
upbound-system for the namespace in the following commands.
$ PROVIDER_POD_NAMESPACE=crossplane-system #upbound-system when using UXPYou should see the
provider-aws-*controllerPodrunning if you executekubectl get pods -n $PROVIDER_POD_NAMESPACE.
Make sure that the appropriate ServiceAccount exists:
$ kubectl get serviceaccounts -n $PROVIDER_POD_NAMESPACEYou should see a ServiceAccount in the output prefixed with provider-aws-*.
- Set variables for IDP and OIDC trust configuration.
$ OIDC_PROVIDER=$(aws eks describe-cluster --name "${PROVIDER_POD_CLUSTER_NAME}" --region "${PROVIDER_POD_REGION}" --query "cluster.identity.oidc.issuer" --output text | sed -e "s/^https:\/\///")$ THUMBPRINT=$(openssl s_client -servername oidc.eks.${PROVIDER_POD_REGION}.amazonaws.com -showcerts -connect oidc.eks.${PROVIDER_POD_REGION}.amazonaws.com:443 2>&- | tac | sed -n '/-----END CERTIFICATE-----/,/-----BEGIN CERTIFICATE-----/p; /-----BEGIN CERTIFICATE-----/q' | tac | openssl x509 -fingerprint -noout | sed 's/://g' | awk -F= '{print tolower($2)}')- Create IAM Role that
provider-awswill use in the TARGET aws account
NOTE: Switch your command line to credentials for the target account.
Get AWS account information and pick an IAM role name. These will be used to
setup an OIDC provider and inject credentials into the provider-aws controller
Pod.
$ TARGET_AWS_ACCOUNT_ID=$(aws sts get-caller-identity --query "Account" --output text)
$ IAM_ROLE_NAME=provider-aws # name for IAM role, can be anything you wantCreate an Identity Provider in the target acount pointing back to the OIDC url from above
aws iam create-open-id-connect-provider -url https://${OIDC_PROVIDER} --thumbprint-list ${THUMBPRINT} --client-id-list sts.amazonaws.com
{
"OpenIDConnectProviderArn": "arn:aws:iam::1234:oidc-provider/oidc.eks.us-west-2.amazonaws.com/id/123456789"
}Create trust relationship for IAM role:
$ cat > trust.yaml <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Federated": "arn:aws:iam::${TARGET_AWS_ACCOUNT_ID}:oidc-provider/${OIDC_PROVIDER}"
},
"Action": "sts:AssumeRoleWithWebIdentity",
"Condition": {
"StringLike": {
"${OIDC_PROVIDER}:sub": "system:serviceaccount:${PROVIDER_POD_NAMESPACE}:provider-aws-*"
}
}
}
]
}
EOFThe default
ServiceAccountname is the provider-aws revision and changes with every provider release. The conditional above wildcard matches the defaultServiceAccountname in order to keep the role consistent across provider releases.
The above policy assumes a service account name of provider-aws-*.
Create an IAM role:
$ aws iam create-role \
--role-name "${IAM_ROLE_NAME}" \
--assume-role-policy-document file://trust.json \
--description "IAM role for provider-aws in account #${PROVIDER_POD_AWS_ACCOUNT_ID}"Associate a policy with the IAM role.
This example uses AdministratorAccess, but you should select a policy with
the minimum permissions required to provision your resources.
$ aws iam attach-role-policy --role-name "${IAM_ROLE_NAME}" --policy-arn=arn:aws:iam::aws:policy/AdministratorAccess- Create
ProviderConfig
Set current kubectl context to provider pod cluster
$ aws eks update-kubeconfig --name $PROVIDER_POD_CLUSTER_NAMEEnsure that ProviderConfig resource kind was created:
$ kubectl explain providerconfig --api-version='aws.crossplane.io/v1beta1'Next, the ProviderConfig must be configured to use assumeRoleWithWebIdentity
and InjectedIdentity in .spec.credentials.source
The code snippet below shows how to configure provider-aws-target-account to do so.
$ cat <<EOF | kubectl apply -f -
apiVersion: aws.crossplane.io/v1beta1
kind: ProviderConfig
metadata:
name: provider-aws-target-account
spec:
assumeRoleWithWebIdentity:
roleARN: "arn:aws:iam::${TARGET_AWS_ACCOUNT_ID}:role/${IAM_ROLE_NAME}"
credentials:
source: InjectedIdentity
EOFRole session name is supported (see https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRoleWithWebIdentity.html#API_AssumeRoleWithWebIdentity_RequestParameters).
$ cat <<EOF | kubectl apply -f -
apiVersion: aws.crossplane.io/v1beta1
kind: ProviderConfig
metadata:
name: provider-aws-target-account
spec:
assumeRoleWithWebIdentity:
roleARN: "arn:aws:iam::${TARGET_AWS_ACCOUNT_ID}:role/${IAM_ROLE_NAME}"
roleSessionName: "my-optional-session-name"
credentials:
source: InjectedIdentity
EOFYou can now use this provider-aws-target-account config with compositions you want
reconciled against the $TARGET_AWS_ACCOUNT_ID and the web identity token
issued by the InjectedIdentity credential will be exchanged for the credentials
matching the role in the .spec.assumeRoleWithWebIdentity.roleARN field.
Multiple ProviderConfigs can be used to switch between credentials when more than
one target account is being reconciled by the aws provider.