AWS ACM Private CA is a module of the AWS Certificate Manager that can setup and manage private CAs.
cert-manager is a Kubernetes add-on to automate the management and issuance of TLS certificates from various issuing sources. It will ensure certificates are valid and up to date periodically, and attempt to renew certificates at an appropriate time before expiry.
This project acts as an addon (see https://cert-manager.io/docs/configuration/external/) to cert-manager that signs off certificate requests using AWS PCA.
Install cert-manager first (https://cert-manager.io/docs/installation/kubernetes/).
Then install AWS PCA Issuer using Helm:
helm repo add awspca https://cert-manager.github.io/aws-privateca-issuer
helm install awspca/aws-privateca-issuer --generate-name
You can check the chart configuration in the default values file.
As of now, the only configurable settings are access to AWS. So you can use AWS_REGION
, AWS_ACCESS_KEY_ID
or AWS_SECRET_ACCESS_KEY
.
Alternatively, you can supply arbitrary secrets for the access and secret keys with the accessKeyIDSelector
and secretAccessKeySelector
fields in the clusterissuer and/or issuer manifests.
Access to AWS can also be configured using an EC2 instance role.
A minimal policy to use the issuer with an authority would look like follows:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "awspcaissuer",
"Action": [
"acm-pca:DescribeCertificateAuthority",
"acm-pca:GetCertificate",
"acm-pca:IssueCertificate"
],
"Effect": "Allow",
"Resource": "arn:aws:acm-pca:<region>:<account_id>:certificate-authority/<resource_id>"
}
]
}
This operator provides two custom resources that you can use.
Examples can be found in the examples directory.
This is a regular namespaced issuer that can be used as a reference in your Certificate CRs.
This CR is identical to the AWSPCAIssuer. The only difference being that it's not namespaced and can be referenced from anywhere.
The AWSPCA Issuer will wait for CertificateRequests to have an approved condition
set before
signing. If using an older version of cert-manager (pre v1.3), you can disable
this check by supplying the command line flag -disable-approved-check
to the
Issuer Deployment.
Please note that if you are using KIAM for authentication, this plugin has been tested on KIAM v4.0. IRSA is also tested and supported.
There is a custom AWS authentication method we have coded into our plugin that allows a user to define a Kubernetes secret with AWS Creds passed in, example here. The user applies that file with their creds and then references the secret in their Issuer CRD when running the plugin, example here.
AWS Private Certificate Authority(PCA) Issuer Plugin supports the following integrations and use cases:
-
Integration with cert-manager 1.4+ and corresponding Kubernetes versions.
-
Authentication methods:
- KIAM v4.0
- IRSA - IAM roles for service accounts
- Kubernetes Secrets
- EC2 Instance Profiles
-
AWS Private CA features:
- End-to-End TLS encryption on Amazon Elastic Kubernetes Service(Amazon EKS).
- TLS-enabled Kubernetes clusters with AWS Private CA and Amazon EKS
- Cross Account CA sharing with supported Cross Account templates
- Supported PCA Certificate Templates: CodeSigningCertificate/V1; EndEntityClientAuthCertificate/V1; EndEntityServerAuthCertificate/V1; OCSPSigningCertificate/V1; EndEntityCertificate/V1; BlankEndEntityCertificate_CSRPassthrough/V1
The code for the translation can be found here.
Depending on which UsageTypes are set in the Cert-Manager certificate, different AWS PCA templates will be used. This table shows how the UsageTypes are being translated into which template to use when making an IssueCertificate request:
Cert-Manager Usage Type(s) | AWS PCA Template ARN |
---|---|
CodeSigning | acm-pca:::template/CodeSigningCertificate/V1 |
ClientAuth | acm-pca:::template/EndEntityClientAuthCertificate/V1 |
ServerAuth | acm-pca:::template/EndEntityServerAuthCertificate/V1 |
OCSPSigning | acm-pca:::template/OCSPSigningCertificate/V1 |
ClientAuth, ServerAuth | acm-pca:::template/EndEntityCertificate/V1 |
Everything Else | acm-pca:::template/BlankEndEntityCertificate_CSRPassthrough/V1 |
Running make test
will run the written unit test
If you run into an issue like
/home/linuxbrew/.linuxbrew/Cellar/go/1.17/libexec/src/net/cgo_linux.go:13:8: no such package located
This can be fixed with a
brew install gcc@5
NOTE: Running these tests will incur charges in your AWS Account.
Running make e2etest
will take the current code artifacts and transform them into a Docker image that will run on a kind cluster and ensure that the current version of the code still works with the Supported Workflows
The easiest way to get the test to run would be to use the follow make targets:
make cluster && make install-eks-webhook && make e2etest
make cluster
will create a kind cluster on your machine that has Cert-Manager installed as well as the aws-pca-issuer plugin (using the HEAD of the current branch)
Before running make cluster
we will need to do the following:
- Have the following tools on your machine:
- Git
- Golang v1.13+
- Docker v17.03+
- Kind v0.9.0+ -> This will be installed via running the test
- Kubectl v1.11.3+
- AWS CLI v2
- Helm
- (Optional) You will need a AWS IAM User to test authentication via K8 secrets. You can provide an already existing user into the test via export PLUGIN_USER_NAME_OVERRIDE=<IAM User Name>
. This IAM User should have a policy attached to it that follows with the policy listed in Configuration. This user will be used to test authentication in the plugin via K8 secrets.
- An S3 Bucket with BPA disabled in us-east-1. After creating the bucket run export OIDC_S3_BUCKET_NAME=<Name of bucket you just created>
- You will need AWS credentials loaded into your terminal that, via the CLI, minimally allow the following actions via an IAM policy:
acm-pca:*
: This is so that Private CA's maybe be created and deleted via the appropriate APIs for testing- If you did not provider a user via PLUGIN_USER_NAME_OVERRIDE, the test suite can create a user for you. This will require the following permissions:
iam:CreatePolicy
,iam:CreateUser
, andiam:AttachUserPolicy
iam:CreateAccessKey
andiam:DeleteAccessKey
: This allow us to create and delete access keys to be used to validate that authentication via K8 secrets is functional. If the user was set via $PLUGIN_USER_NAME_OVERRIDEs3:PutObject
ands3::PutObjectAcl
these can be scoped down to the s3 bucket you created above
- An AWS IAM OIDC Provider. Before creating the OIDC provider, set a temporary value for $OIDC_IAM_ROLE (export OIDC_IAM_ROLE=arn:aws:iam::000000000000:role/oidc-kind-cluster-role
and run make cluster && make install-eks-webhook && make kind-cluster-delete
). This needs to be done otherwise you may see an error complaining about the absence of a file .well-known/openid-configuration. Running these commands helps bootstrap the S3 bucket so that the OIDC provider can be created. Set the provider url of the OIDC provider to be $OIDC_S3_BUCKET_NAME.s3.us-east-1.amazonaws.com/cluster/my-oidc-cluster
. Set the audience to be sts.amazonaws.com
.
- An IAM role that has a trust relationship with the IAM OIDC Provider that was just created. An inline policy for this role can be grabbed from Configuration except you can't scope it to a particular CA since those will be created during the test run. This role will be used to test authentication in the plugin via IRSA. The trust relationship should look something like:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Federated": "${OIDC_ARN}"
},
"Action": "sts:AssumeRoleWithWebIdentity",
"Condition": {
"StringEquals": {
"${OIDC_URL}:sub": "system:serviceaccount:aws-privateca-issuer:aws-privateca-issuer-sa"
}
}
}
]
}
After creating this role run export OIDC_IAM_ROLE=<IAM role arn you created above>
- make cluster
recreate the cluster with all the appropriate enviornment variables set
- make install-eks-webhook
will install a webhook in that kind cluster that will enable the use of IRSA
- make e2etest
will run end-to-end test against the kind cluster created via make cluster
.
- After you update controller code locally, an easy way to redeploy the new controller code and re-run end-to-end test is to run:: make upgrade-local && make e2etest
Getting IRSA to work on Kind was heavily inspired by the following blog: https://reece.tech/posts/oidc-k8s-to-aws/
If you want to also test that cross account issuers are working, you will need:
- A seperate AWS account that has a role that trust the caller who kicks off the end-to-end test via the CLI, the role will need a policy with the following permissions
acm-pca:*
: This is so the test can create a Private CA is the other accountram:GetResourceShareAssociations
,ram:CreateResourceShare
, andram:DeleteResourceShare
: These allow the creation of a CA that can be shared with the source (caller) account- After creating this role you will need to run
export PLUGIN_CROSS_ACCOUNT_ROLE=<name of the role you created above>
. If you do not do this, you will see a message about cross account testing being skipped due to this enviornment variable not being set.
Soon these test should be automatically run on each PR, but for the time being each PR will have a core-collaborator for the project run the tests manually to ensure no regressions on the supported workflows
The test are fairly straightforward, they will take a set of "issuer templates" (Base name for a aws-pca-issuer as well as a AWSIssuerSpec) and a set of "certificate templates" (Base name for type of certificate as well as a certificate spec). The tests will then take every certificate spec and apply it to each issuer spec. The test will ensure all issuers made from issuer specs reach a ready state as well as ensure that each certificate issued off a issuer reaches a ready state. The issuers with the different certificates is verified to be working for both cluster and namespace issuers.
For the most part, updating end-to-end will be updating these "issuer specs" and "certificate specs" which reside within e2e/e2e_test.go. If the test need updating beyond that, the core logic for the test is also embedded in e2e/e2e_test.go. The other files within the e2e folder are mainly utilities that shouldn't require frequent update
-
Check the secret with the AWS credentials: AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY values have to be base64 encoded.
-
If the generated CertificateRequest shows no events, it is very likely that you're using an older version of cert-manager which doesn't support approval check. Disable approval check at the issuer deployment.
For help, please consider the following venues (in order):
- Check the Troubleshooting section
- Search open issues
- File an issue
- Please ask questions in the slack channel #cert-manager-aws-privateca-issuer
We welcome community contributions and pull requests.
See our contribution guide for more information on how to report issues, set up a development environment, and submit code.
We adhere to the Amazon Open Source Code of Conduct.