mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-21 17:09:04 +01:00
refactor: Refactoring to match the rest of terraform-aws-modules (#1583)
This commit is contained in:
29
fargate.tf
29
fargate.tf
@@ -1,23 +1,16 @@
|
||||
module "fargate" {
|
||||
source = "./modules/fargate"
|
||||
cluster_name = coalescelist(aws_eks_cluster.this[*].name, [""])[0]
|
||||
source = "./modules/fargate"
|
||||
|
||||
create_eks = var.create_eks
|
||||
create_fargate_pod_execution_role = var.create_fargate_pod_execution_role
|
||||
fargate_pod_execution_role_name = var.fargate_pod_execution_role_name
|
||||
fargate_profiles = var.fargate_profiles
|
||||
permissions_boundary = var.permissions_boundary
|
||||
iam_path = var.iam_path
|
||||
iam_policy_arn_prefix = local.policy_arn_prefix
|
||||
subnets = coalescelist(var.fargate_subnets, var.subnets, [""])
|
||||
tags = var.tags
|
||||
|
||||
# Hack to ensure ordering of resource creation.
|
||||
# This is a homemade `depends_on` https://discuss.hashicorp.com/t/tips-howto-implement-module-depends-on-emulation/2305/2
|
||||
# Do not create node_groups before other resources are ready and removes race conditions
|
||||
# Ensure these resources are created before "unlocking" the data source.
|
||||
# Will be removed in Terraform 0.13
|
||||
eks_depends_on = [
|
||||
aws_eks_cluster.this,
|
||||
kubernetes_config_map.aws_auth,
|
||||
]
|
||||
cluster_name = local.cluster_name
|
||||
fargate_pod_execution_role_name = var.fargate_pod_execution_role_name
|
||||
permissions_boundary = var.permissions_boundary
|
||||
iam_path = var.iam_path
|
||||
subnets = coalescelist(var.fargate_subnets, var.subnets, [""])
|
||||
|
||||
fargate_profiles = var.fargate_profiles
|
||||
|
||||
tags = var.tags
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user