Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How to bamboo tags elastic-agent instances

mithrim July 1, 2021

Hi! How can I create custom tag for EC2 instances, started via Bamboo? Bamboo Server version 7.2.4. 

1 answer

1 accepted

0 votes
Answer accepted
Steffen Opel _Utoolity_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 6, 2021

Hi Mithrim, welcome to the Atlassian Community!

Unfortunately this is still not supported by Bamboo - please watch and vote for the following issue to raise Atlassian's priority to finally address this extremely long standing feature gap:

Potential workarounds

The issue comments describe a few approaches - nowadays I'd look into automating this on the AWS side by listening to the EC2 instance startup via EventBridge and applying the tag via a Lambda function provisioned as an Serverless Application Model (SAM) app.

mithrim July 7, 2021

Thanks for asking my question. I'm already find decision, may be it will be useful for somebody.

import os
import subprocess
import json

cmd = 'aws ec2 describe-tags > /tmp/aws_tags.json'
os.system(cmd)
with open("/tmp/aws_tags.json", "r") as read_file:
    tags = json.load(read_file)

for elem in tags.values():
    for elem1 in elem:
        if elem1['ResourceType'] == 'instance' and 'known tag' in elem1['Value']:
            cmd = f"aws ec2 create-tags --resources {elem1['ResourceId']} --tags Key=Name,Value=new_tag"
            subprocess.run(cmd, shell=True)

 

This python script run on instance startup ang change tags via aws cli

Like Steffen Opel _Utoolity_ likes this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events