From 4bf28764cdd67f9df9043ddc7a9bd91b08ef2695 Mon Sep 17 00:00:00 2001 From: Leonard Cohnen Date: Fri, 3 May 2024 14:47:09 +0200 Subject: [PATCH] terraform: set role on jump-host --- terraform/infrastructure/aws/modules/jump_host/main.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 = <