-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Wayfinder v2.6 (#56) * Wayfinder v2.6.0 and EKS v1.28 * External module updates * Add support for EKS access entries * Update examples with access entries usage * Bump Wayfinder release to v2.6.1 * Update Wayfinder to v2.6.2 * Wayfinder v2.6.3 * Wayfinder v2.6.4
- Loading branch information
1 parent
6c26f9f
commit 6bb00f1
Showing
25 changed files
with
371 additions
and
298 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,32 @@ | ||
access_entries = { | ||
tf_plan = { | ||
principal_arn = "arn:aws:iam::123456789012:role/tf-plan" | ||
policy_associations = { | ||
cluster_admin = { | ||
policy_arn = "arn:aws:eks::aws:cluster-access-policy/AmazonEKSClusterAdminPolicy" | ||
access_scope = { | ||
type = "cluster" | ||
} | ||
} | ||
} | ||
} | ||
tf_apply = { | ||
principal_arn = "arn:aws:iam::123456789012:role/tf-apply" | ||
policy_associations = { | ||
cluster_admin = { | ||
policy_arn = "arn:aws:eks::aws:cluster-access-policy/AmazonEKSClusterAdminPolicy" | ||
access_scope = { | ||
type = "cluster" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
clusterissuer_email = "[email protected]" | ||
disable_local_login = true | ||
dns_zone_name = "wf.example.com" | ||
idp_provider = "generic" | ||
wayfinder_instance_id = "your-wayfinder-instance-id" | ||
terraform_plan_role_arn = "arn:aws:iam::123456789012:role/terraform-plan-role" | ||
tags = { | ||
Repository = "Your Repository URL" | ||
Provisioner = "Terraform" | ||
|
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
Oops, something went wrong.