Created
August 7, 2020 03:53
-
-
Save samof76/307be6ecef264a8a77c44a38cfaebec0 to your computer and use it in GitHub Desktop.
08_private_link.tf
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
module "eks_private_link" { | |
source = "git.url/repo?ref=epl3.0" | |
cluster_name = var.cluster_name | |
environment = module.eks_cluster.eks_cluster_environment | |
vpc_id = module.eks_cluster.eks_cluster_vpc_id | |
nlb_subnets = module.subnets_from_list.eks_subnet_ids | |
allowed_principals = var.allowed_principals | |
tags = local.tags | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment