Thank you for this, was very helpful, tags are so important and overlooked a lot.
@theodorebowie62983 жыл бұрын
i guess it's kinda off topic but do anyone know of a good site to stream newly released series online?
@landennixon95323 жыл бұрын
@Theodore Bowie i use FlixZone. Just search on google for it =)
@amirizaiah71793 жыл бұрын
@Theodore Bowie i would suggest FlixZone. Just google for it :)
@foxvincenzo50273 жыл бұрын
@Theodore Bowie i use flixzone. Just google for it =)
@edwardbrody5513 жыл бұрын
@Theodore Bowie i would suggest Flixzone. Just google for it =)
@kshepard717 жыл бұрын
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.
@rahulat3026 жыл бұрын
How can we do tagging or labeling for AWS CodeCommit, and how can we use those labels for Codepipeline deployments to various environments?
@wysefavor6 жыл бұрын
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 ?
@ratnakarreddyg38518 жыл бұрын
Could you please make a demo for auto tagging using Lambda?
@reethanarkaniselvaraj218 жыл бұрын
Really good ..
@YogeshMehta8 жыл бұрын
Thanks for Feedback :)
@davidyawn22677 жыл бұрын
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
@YogeshMehta7 жыл бұрын
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.
@vishalhedaoo10107 жыл бұрын
Sir, how to categeorised instances for production server, DB server, App Server
@YogeshMehta7 жыл бұрын
+Vishal Hedaoo you can add rags like environment prod/dev/uat And function db/app etc
@sahanajathan42648 жыл бұрын
can i create a tag while launching instance.???
@YogeshMehta8 жыл бұрын
sahana jathan yes, you can.. below is example ec2: count_tags: Name: server.xyz.com Function: webserver
@sahanajathan42648 жыл бұрын
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????
@YogeshMehta8 жыл бұрын
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
@sahanajathan42648 жыл бұрын
ok.. thank you yogesh
@sahanajathan42648 жыл бұрын
can you please tell me what is the command to give name of the instance while launching it..???