You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when create an EKS cluster on fargate tags aren't created properly on fargate profiles. When tags object exists on fargate profile as in the example then the tags aren't merged with the tags from the cluster but swallowed.
If this is a bug, how to reproduce? Please include a code sample if relevant.
If you terraform plan the fargate example it should output
# module.eks.module.fargate.aws_eks_fargate_profile.this["example"] will be created
+ resource "aws_eks_fargate_profile" "this" {
+ arn = (known after apply)
+ cluster_name = (known after apply)
+ fargate_profile_name = (known after apply)
+ id = (known after apply)
+ pod_execution_role_arn = (known after apply)
+ status = (known after apply)
+ subnet_ids = (known after apply)
+ tags = {
+ "Owner" = "test"
}
+ selector {
+ namespace = "default"
}
}
What's the expected behavior?
It should output
# module.eks.module.fargate.aws_eks_fargate_profile.this["example"] will be created
+ resource "aws_eks_fargate_profile" "this" {
+ arn = (known after apply)
+ cluster_name = (known after apply)
+ fargate_profile_name = (known after apply)
+ id = (known after apply)
+ pod_execution_role_arn = (known after apply)
+ status = (known after apply)
+ subnet_ids = (known after apply)
+ tags = {
+ "Environment" = "test"
+ "GithubOrg" = "terraform-aws-modules"
+ "GithubRepo" = "terraform-aws-eks"
+ "Owner" = "test"
}
+ selector {
+ namespace = "default"
}
}
Are you able to fix this problem and submit a PR? Link here if you have already.
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
I have issues
with tags on fargate profiles
I'm submitting a...
What is the current behavior?
when create an EKS cluster on fargate tags aren't created properly on fargate profiles. When
tags
object exists on fargate profile as in the example then the tags aren't merged with the tags from the cluster but swallowed.If this is a bug, how to reproduce? Please include a code sample if relevant.
If you
terraform plan
the fargate example it should outputWhat's the expected behavior?
It should output
Are you able to fix this problem and submit a PR? Link here if you have already.
PR-1159
The text was updated successfully, but these errors were encountered: