From 034e730501af8ea6f463a984d0845c883403b955 Mon Sep 17 00:00:00 2001 From: Matt Richardson Date: Thu, 18 Feb 2021 21:11:45 +1100 Subject: [PATCH] Add tags to aws test instances --- vagrantfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vagrantfile b/vagrantfile index a7abb22a6..660f4861e 100644 --- a/vagrantfile +++ b/vagrantfile @@ -124,7 +124,10 @@ Vagrant.configure(VAGRANT_FILE_API_VERSION) do |config| aws.instance_type = "c4.xlarge" aws.keypair_name = "#{aws_key_name}" aws.tags = { - 'Name' => 'Vagrant DSC testing' + 'Name' => 'Vagrant DSC testing', + 'Application' => 'OctopusDSC', + 'Lifetime' => '< 1 day', + 'Environment' => 'Test' } aws.security_groups = [ aws_security_group_id ] aws.subnet_id = aws_subnet_id