Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crazy-canux/terraform-aws-external-dns
deploy externalDNS on EKS with terraform.
https://github.com/crazy-canux/terraform-aws-external-dns
aws dns external-dns kubernetes terraform
Last synced: 2 days ago
JSON representation
deploy externalDNS on EKS with terraform.
- Host: GitHub
- URL: https://github.com/crazy-canux/terraform-aws-external-dns
- Owner: crazy-canux
- Created: 2022-07-06T04:37:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-07T10:14:57.000Z (over 2 years ago)
- Last Synced: 2024-04-16T04:22:52.136Z (7 months ago)
- Topics: aws, dns, external-dns, kubernetes, terraform
- Language: HCL
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# terraform-external-dns
## HowTo
## HowTo
module "external_dns" {
source = "crazy-canux/dns/external"
version = "0.1.0"
txt_owner_id = local.cluster_name
service_account_name = local.service_account
cluster_name = local.cluster_name
oidc_issuer = local.cluster_oidc_issuer_url
zone_fqdns = [local.zone_fqdn]
depends_on = [data.terraform_remote_state.eks]
}