File tree Expand file tree Collapse file tree 1 file changed +17
-9
lines changed Expand file tree Collapse file tree 1 file changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -18,21 +18,29 @@ amazon_web_services:
1818 Install private certificates used by (e.g.) in-line content inspection engines which re-encrypt traffic.
1919
2020```
21- extra_ssl_certificates: |
22- -----BEGIN CERTIFICATE-----
23- MIIF...<snip>...ABCD
24- -----END CERTIFICATE-----
25- -----BEGIN CERTIFICATE-----
26- MIIF...<snip>...EF01
27- -----END CERTIFICATE-----
21+ # Add client certificate to CA trust on node
22+ amazon_web_services:
23+ node_groups:
24+ general:
25+ instance: m5.2xlarge
26+ launch_template:
27+ pre_bootstrap_command: |
28+ #!/bin/bash
29+ cat <<-EOT >> /etc/pki/ca-trust/source/anchors/client.pem
30+ -----BEGIN CERTIFICATE-----
31+ XzxzxzxzxxzxzxzxzxzxzxzxxzxzxzxzxzxzxzxxzxzxzxzxzxzxzxzxzxxzxzZx
32+ ZxyzxzxzxxzxzxzxzxzxzxzxxzxzxzxzxzxzxzxxzxzxzxzxzxzxzxzxzxxzxzXz
33+ -----END CERTIFICATE-----
34+ EOT
35+ sudo update-ca-trust extract
2836```
2937
3038- ** Private EKS endpoint configuration**
3139 Mirrors the corresponding AWS console option, which routes all EKS traffic within the VPC.
3240
3341```
34- eks_endpoint_private_access: true
35- eks_endpoint_public_access: false
42+ amazon_web_services:
43+ eks_endpoint_access: private # valid values: [public, private, public_and_private]
3644```
3745
3846- ** Deploy into existing subnets**
You can’t perform that action at this time.
0 commit comments