Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ resource "kubernetes_deployment" "this" {
"--source=istio-gateway",
"--source=istio-virtualservice",
"--domain-filter=${var.domain}",
"--annotation-filter=${var.annotation_filter}",
"--provider=aws",
"--policy=${var.sync_policy}",
"--aws-zone-type=${var.aws_zone_type}",
Expand Down
5 changes: 5 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ variable "hosted_zone_id" {
type = string
}

variable "annotation_filter" {
description = "A label name which determines which resources are targeted by this instance of external-dns, defaults to all sources"
type = string
default = "all sources"
}

variable "external_dns_version" {
description = "The AWS External DNS version to use. See https://github.com/kubernetes-sigs/external-dns/releases for available versions"
Expand Down