How to Automate EC2 Management using AWS Systems Manager?

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

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

  • @CloudExpertSolution
    @CloudExpertSolution  2 года назад +2

    For instances in an Auto Scaling group, you must create a launch template or launch configuration and choose an IAM instance profile to associate with the instances. Configuring IAM instance profile is available under Advance Setting. Please refer this AWS Documentation for step by step process to create a launch template for an Auto Scaling Group. docs.aws.amazon.com/autoscaling/ec2/userguide/create-launch-template.html#create-launch-template-for-auto-scaling

  • @firstNameLastName-v6e
    @firstNameLastName-v6e 7 месяцев назад +1

    will you please create videos for AWS - projects for beginner , intermediate , expert level for solution architect.

  • @padmasree4117
    @padmasree4117 Год назад +1

    Do more videos of AWS sir

  • @RahulRaj-sc8pv
    @RahulRaj-sc8pv 2 года назад +1

    yes please make all the automation possibility lab using SSM .

  • @lian9868
    @lian9868 Год назад +1

    Yes pls

  • @venkateshgunda
    @venkateshgunda Год назад

    How to enable EC2 tag meta data in existing EC2 instances?

    • @CloudExpertSolution
      @CloudExpertSolution  Год назад

      Please follow these steps
      1. Connect to the EC2 instance using SSH or any other remote access method.
      2. Open the cloud-init configuration file at /etc/cloud/cloud.cfg using a text editor.
      3. Find the line that says "preserve_hostname: false" and change it to "preserve_hostname: true".
      4. Add the following lines at the end of the file:
      # Enable EC2 tag metadata
      datasource:
      - ec2
      5. Save the changes to the file.
      6. Restart the cloud-init service by running the command: sudo service cloud-init restart.
      After completing these steps, the EC2 instance will be able to access and use EC2 tag metadata.