-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Verify IAC deployment using eks (#255)
* Moving to a compatible version * adding vpc cni specific version * Upgrading to new version * addnig vpc cni service account role * private zone change * ns record * Changes for public_int_domain * fixing zone * fixing zone * temprly setting the flag to true * removing ns record * try using defaults from self managed * rm configmap * cleanup and add ns record * fix typo on ns * fix output for eks module for int domain * add zone for int to post config * missed local var * add prefix delegation and sgs * just use primary * adding try for taints and labels * adding try for node pool ref * Fixing null nodepool * correcting the condition * use latest cni * revert * go back to latest cni addon --------- Co-authored-by: David Fry <[email protected]>
- Loading branch information
1 parent
a44db1c
commit 9432e9a
Showing
10 changed files
with
75 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,28 @@ | ||
data "aws_route53_zone" "public" { | ||
count = (var.create_public_zone || !var.configure_route_53) ? 0 : 1 | ||
name = "${local.cluster_domain}." | ||
name = "${local.cluster_domain}." | ||
} | ||
|
||
data "aws_route53_zone" "public_int" { | ||
count = (var.create_public_zone || !var.configure_route_53) ? 0 : 1 | ||
name = "${var.private_subdomain_string}.${local.cluster_domain}." | ||
} | ||
|
||
data "aws_route53_zone" "private" { | ||
count = (var.create_private_zone || !var.configure_route_53) ? 0 : 1 | ||
name = "${local.cluster_domain}.internal." | ||
name = "${local.cluster_domain}.internal." | ||
} | ||
|
||
data "aws_route53_zone" "cluster_parent" { | ||
count = (var.manage_parent_domain || !var.configure_route_53) ? 0 : 1 | ||
name = "${local.cluster_parent_domain}." | ||
name = "${local.cluster_parent_domain}." | ||
} | ||
|
||
data "aws_route53_zone" "cluster_parent_parent" { | ||
count = (var.manage_parent_domain && var.manage_parent_domain_ns && var.configure_route_53) ? 1 : 0 | ||
name = "${local.cluster_parent_parent_domain}." | ||
name = "${local.cluster_parent_parent_domain}." | ||
} | ||
|
||
data "aws_availability_zones" "available" { | ||
state = "available" | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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