Friday, September 24, 2021

to get the instance-type from instance cli through meta-data

Instance metadata is provide information about your instance such as host name, mac address, instance type, and security groups etc.


$ curl http://169.254.169.254/latest/meta-data/



ami-id                                        
ami-launch-index                        
ami-manifest-path                        
block-device-mapping/                
events/                                        
hibernation/                                 
hostname                                    
identity-credentials/                    
instance-action                             
instance-id                                
instance-life-cycle                        
instance-type                            
local-hostname                            
local-ipv4                                    
mac                                            
managed-ssh-keys/                    
metrics/                                    
network/                                    
placement/                                
profile                                          
public-hostname                        
public-ipv4                                
public-keys/                                
reservation-id                            
security-groups                            
services/                                    


$ curl http://169.254.169.254/latest/meta-data/instance-type

$ curl http://169.254.169.254/latest/meta-data/ami-id

$ curl http://169.254.169.254/latest/meta-data/local-hostname

No comments:

Post a Comment

testing