diff --git a/terraform/infrastructure/aws/modules/jump_host/main.tf b/terraform/infrastructure/aws/modules/jump_host/main.tf index 24f8edd82..a33d17369 100644 --- a/terraform/infrastructure/aws/modules/jump_host/main.tf +++ b/terraform/infrastructure/aws/modules/jump_host/main.tf @@ -27,7 +27,8 @@ resource "aws_instance" "jump_host" { vpc_security_group_ids = var.security_groups tags = merge(var.additional_tags, { - "Name" = "${var.base_name}-jump-host" + "Name" = "${var.base_name}-jump-host", + "constellation-role" = "jump-host", }) user_data = <