AWS Resource Tagging

Поделиться
HTML-код
  • Опубликовано: 14 дек 2024

Комментарии • 29

  • @SonyBraviaXBRXE
    @SonyBraviaXBRXE 5 лет назад +1

    Thank you for this, was very helpful, tags are so important and overlooked a lot.

    • @theodorebowie6298
      @theodorebowie6298 3 года назад

      i guess it's kinda off topic but do anyone know of a good site to stream newly released series online?

    • @landennixon9532
      @landennixon9532 3 года назад

      @Theodore Bowie i use FlixZone. Just search on google for it =)

    • @amirizaiah7179
      @amirizaiah7179 3 года назад

      @Theodore Bowie i would suggest FlixZone. Just google for it :)

    • @foxvincenzo5027
      @foxvincenzo5027 3 года назад

      @Theodore Bowie i use flixzone. Just google for it =)

    • @edwardbrody551
      @edwardbrody551 3 года назад

      @Theodore Bowie i would suggest Flixzone. Just google for it =)

  • @vishalhedaoo1010
    @vishalhedaoo1010 7 лет назад +1

    Its really helpful for me, Nice explaination

  • @rahulat302
    @rahulat302 6 лет назад

    How can we do tagging or labeling for AWS CodeCommit, and how can we use those labels for Codepipeline deployments to various environments?

  • @kshepard71
    @kshepard71 7 лет назад

    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.

  • @wysefavor
    @wysefavor 6 лет назад

    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 ?

  • @ratnakarreddyg3851
    @ratnakarreddyg3851 8 лет назад

    Could you please make a demo for auto tagging using Lambda?

  • @vishalhedaoo1010
    @vishalhedaoo1010 7 лет назад +1

    Sir, how to categeorised instances for production server, DB server, App Server

    • @YogeshMehta
      @YogeshMehta  7 лет назад

      +Vishal Hedaoo you can add rags like environment prod/dev/uat And function db/app etc

  • @davidyawn2267
    @davidyawn2267 7 лет назад +1

    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

    • @YogeshMehta
      @YogeshMehta  7 лет назад

      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.

  • @reethanarkaniselvaraj21
    @reethanarkaniselvaraj21 8 лет назад +1

    Really good ..

  • @sahanajathan4264
    @sahanajathan4264 8 лет назад +1

    can i create a tag while launching instance.???

    • @YogeshMehta
      @YogeshMehta  8 лет назад

      sahana jathan yes, you can.. below is example
      ec2:
      count_tags:
      Name: server.xyz.com
      Function: webserver

    • @sahanajathan4264
      @sahanajathan4264 8 лет назад +1

      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????

    • @YogeshMehta
      @YogeshMehta  8 лет назад +1

      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

    • @sahanajathan4264
      @sahanajathan4264 8 лет назад +1

      ok.. thank you yogesh

    • @sahanajathan4264
      @sahanajathan4264 8 лет назад

      can you please tell me what is the command to give name of the instance while launching it..???