Skip to content

Commit

Permalink
feat: Add missed tags (#191)
Browse files Browse the repository at this point in the history
* feat: Add missed tags

* Update outputs.tf

* Update outputs.tf

* add description
  • Loading branch information
MaxymVlasov authored Aug 8, 2024
1 parent 2c46363 commit e259e2d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion examples/complete/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ output "eks_node_group_cbd_pet_name" {
}

output "eks_node_group_launch_template_id" {
value = module.eks_node_group.eks_node_group_launch_template_id
description = "The ID of the launch template used for this node group"
value = module.eks_node_group.eks_node_group_launch_template_id
}

output "eks_node_group_ami_id" {
Expand Down
2 changes: 2 additions & 0 deletions iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ resource "aws_iam_policy" "ipv6_eks_cni_policy" {

name = "${module.this.id}-CNI_Policy"
policy = join("", data.aws_iam_policy_document.ipv6_eks_cni_policy[*].json)

tags = module.this.tags
}

resource "aws_iam_role_policy_attachment" "ipv6_eks_cni_policy" {
Expand Down
3 changes: 2 additions & 1 deletion variables-deprecated.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ variable "cluster_autoscaler_enabled" {
}

output "WARNING_cluster_autoscaler_enabled" {
value = var.cluster_autoscaler_enabled == null ? null : "WARNING: variable `cluster_autoscaler_enabled` is obsolete and has been ignored."
description = "WARNING"
value = var.cluster_autoscaler_enabled == null ? null : "WARNING: variable `cluster_autoscaler_enabled` is obsolete and has been ignored."
}

variable "block_device_mappings" {
Expand Down

0 comments on commit e259e2d

Please sign in to comment.