Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
thepoppingone committed Aug 4, 2023
1 parent e7cd35d commit 3bd8350
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/essentials/adot.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ resource "aws_eks_addon" "adot_operator" {
cluster_name = var.cluster_name
addon_name = "adot"
addon_version = try(var.adot_addon_version, data.aws_eks_addon_version.latest_adot.version)
resolve_conflicts = var.resolve_conflicts_on_create
resolve_conflicts = var.resolve_conflicts_on_create #using this variable to resolve conflict as effect is the same

# TODO: Use the bottom when the AWS provider upgrades to v5 as `resolve_conflicts` is deprecated
# resolve_conflicts_on_create = var.resolve_conflicts_on_create
# resolve_conflicts_on_update = var.resolve_conflicts_on_update

Expand Down

0 comments on commit 3bd8350

Please sign in to comment.