Last active
August 9, 2019 22:09
-
-
Save charandas/b59b934d784d13a04c06b147aeb4ef5d to your computer and use it in GitHub Desktop.
traefik eks helm chart config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "VisualEditor0", | |
"Effect": "Allow", | |
"Action": [ | |
"iam:GetServerCertificate", | |
"elasticloadbalancing:DescribeLoadBalancers", | |
"route53:GetChange", | |
"iam:ListServerCertificates", | |
"route53:ListHostedZones", | |
"route53:ChangeResourceRecordSets", | |
"route53:ListResourceRecordSets", | |
"elasticloadbalancing:AddListenerCertificates", | |
"elasticloadbalancing:RemoveListenerCertificates", | |
"route53:ListHostedZonesByName", | |
"elasticloadbalancing:SetLoadBalancerListenerSSLCertificate", | |
"iam:UploadServerCertificate" | |
], | |
"Resource": "*" | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
imageTag: 1.7.12-alpine | |
dashboard: | |
enabled: true | |
domain: some_domain | |
rbac: | |
enabled: true | |
ssl: | |
enabled: true | |
# enforced: true | |
kubernetes: | |
namespaces: | |
- some_namespace | |
acme: | |
staging: false | |
onHostRule: false | |
challengeType: "dns-01" | |
logging: true | |
enabled: true | |
dnsProvider: | |
name: route53 | |
route53: | |
AWS_ACCESS_KEY_ID: <AWS_KEY_ID> | |
AWS_SECRET_ACCESS_KEY: <AWS_ACCESS_KEY> | |
AWS_REGION: us-east-1 | |
persistence: | |
storageClass: gp2 | |
email: some_email | |
domains: | |
enabled: true | |
domainsList: | |
- main: some_wildcard_domain |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment