Has anyone found any demos for tagging at scale? This one is really good, but I am interested in seeing the benefits of tagging within a larger, enterprise type environment in a demo.
how to create resource group and cost allocation tag through cli and how to check the functionality of those tag in cost explorer,,,,please create a video for this
aws ec2 run-instances --image-id ami-***** --count 1 --instance -type t2.micro --key-name UC2 --subnet-id subnet-***** --security-group-ids sg-**** if this is my instance creation command.. how can i add tag here????
Hi Sahana,Unfortunately, the CLI not supports tag creation during the instance build.You can use Automation tool like Anisble to assign tags during the instance creation. instance_tags: Name: "{{ tag_Name }}" Service: "{{ tag_Service }}"Cheers,Yogesh
Thank you for this, was very helpful, tags are so important and overlooked a lot.
i guess it's kinda off topic but do anyone know of a good site to stream newly released series online?
@Theodore Bowie i use FlixZone. Just search on google for it =)
@Theodore Bowie i would suggest FlixZone. Just google for it :)
@Theodore Bowie i use flixzone. Just google for it =)
@Theodore Bowie i would suggest Flixzone. Just google for it =)
Its really helpful for me, Nice explaination
How can we do tagging or labeling for AWS CodeCommit, and how can we use those labels for Codepipeline deployments to various environments?
Has anyone found any demos for tagging at scale? This one is really good, but I am interested in seeing the benefits of tagging within a larger, enterprise type environment in a demo.
how do one create IAM policy to enforce tags whenever any new resources are created in AWS ?
it can be automated using IAM policy right ?
Could you please make a demo for auto tagging using Lambda?
Sir, how to categeorised instances for production server, DB server, App Server
+Vishal Hedaoo you can add rags like environment prod/dev/uat And function db/app etc
how to create resource group and cost allocation tag through cli and how to check the functionality of those tag in cost explorer,,,,please create a video for this
Hi David, you can add more tags based on your costing requirements and then you can use cloud costing tools for managing/validating the cost.
Really good ..
Thanks for Feedback :)
can i create a tag while launching instance.???
sahana jathan yes, you can.. below is example
ec2:
count_tags:
Name: server.xyz.com
Function: webserver
aws ec2 run-instances
--image-id ami-*****
--count 1
--instance -type t2.micro
--key-name UC2
--subnet-id subnet-*****
--security-group-ids sg-****
if this is my instance creation command.. how can i add tag here????
Hi Sahana,Unfortunately, the CLI not supports tag creation during the instance build.You can use Automation tool like Anisble to assign tags during the instance creation. instance_tags:
Name: "{{ tag_Name }}"
Service: "{{ tag_Service }}"Cheers,Yogesh
ok.. thank you yogesh
can you please tell me what is the command to give name of the instance while launching it..???