Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I get AWS Instance Tags in user-data?

I use aws ec2 userdata with windows powershell scripts. I need instance bootstrapping. My idea is:

  • EC2 instance tag adds.It's key name "Version", it's value "1.0.0.158-branchname"

I have tried to get version tag value in userdata. I checked aws http api. It can't return tags. I wrote simple powershell scripts:

$instanceId = (New-Object System.Net.WebClient).DownloadString("http://169.254.169.254/latest/meta-data/instance-id")
aws ec2 describe-tags --filters $filter --query 'Tags[*]'

I can get instance Id with aws http api. I can't get instance tags because AWS ec2 userdata can't start "aws.exe".

This script is correct - it is manually run before the instance is started.

Note: "aws" is "aws.exe" (https://aws.amazon.com/cli/)

like image 217
Ömer Faruk Aplak Avatar asked Dec 08 '22 08:12

Ömer Faruk Aplak


2 Answers

I resolve it, my problem is using aws cli . I use powershell api and fix it.

$instanceId = (New-Object System.Net.WebClient).DownloadString("http://169.254.169.254/latest/meta-data/instance-id")
$versionTag =  Get-EC2Tag | ` Where-Object {$_.ResourceId -eq $instanceId -and $_.Key -eq 'Version'}
like image 168
Ömer Faruk Aplak Avatar answered Dec 16 '22 12:12

Ömer Faruk Aplak


Just some clarifications as I was facing similar issue..

If the Instance has an IAM role with EC2 Read access..

# My need to use AWSDefaults cmdlet to get temp credentials from STS
Initialize-AWSDefaults
$instanceId = irm -uri http://169.254.169.254/latest/metadata/instance-id
$instance = (Get-Instance -InstanceId $instanceId).Instances[0]
$instanceName = ($instance.Tags | ? { $_.Key -eq "Name"} | select -expand Value)
like image 24
Vincent De Smet Avatar answered Dec 16 '22 14:12

Vincent De Smet