Skip to content

Commit

Permalink
Set ami_ssm_parameter to empty value
Browse files Browse the repository at this point in the history
Signed-off-by: Philip Schmid <philip.schmid@isovalent.com>
  • Loading branch information
PhilipSchmid committed Nov 3, 2023
1 parent c9dee60 commit cf8d6b0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 03-talos.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ module "talos_control_plane_nodes" {

name = "${var.cluster_name}-control-plane-${count.index}"
ami = local.ami_id
ami_ssm_parameter = ""
monitoring = true
instance_type = var.control_plane.instance_type
subnet_id = element(data.aws_subnets.public.ids, count.index)
Expand Down Expand Up @@ -37,6 +38,7 @@ module "talos_worker_group" {

name = "${var.cluster_name}-worker-group-${each.value.name}-${trimprefix(each.key, "${each.value.name}.")}"
ami = local.ami_id
ami_ssm_parameter = ""
monitoring = true
instance_type = each.value.instance_type
subnet_id = element(data.aws_subnets.public.ids, tonumber(trimprefix(each.key, "${each.value.name}.")))
Expand Down

0 comments on commit cf8d6b0

Please sign in to comment.