Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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]
}