Question : A root account has created an IAM group and defined the policy as: "Statement": [ { "Effect": "Allow" "Action": ["iam:ChangePassword"], "Resource": ["arn:aws:iam::3377:user/${aws:username}"] }, { "Effect": "Allow", "Action": ["iam:GetAccountPasswordPolicy"], "Resource": ["*"] } ] Select the corect statement which applies. 1. Allow all the users of IAM to modify their password 2. Allow this group to view the password policy of all the IAM users 3. Access Mostly Uused Products by 50000+ Subscribers 4. Allow this group to view the password policy and modify the password of all the IAM users
Explanation: This IAM policy grants access to the ChangePassword action, which lets the users use the console, the CLI, or the API to change their passwords. The Resource element uses a policy variable (aws:username), which is useful in policies that are attached to groups. The aws:username key resolves to the name of the current IAM user when a request is made, so that each user is allowed permission to change only his or her own password . This policy will allow all the users of this group to modify the passwords of all the IAM users.
Question : Being a QuickTechie.com AWS Developer you have hosted an application on EC. The user wants to configure EC to send requests for DB to the MySQL RDS on port . However, RDS returns the response on port 3372. How can the user configure this? 1. Configure outbound port for RDS as 3372 using VPC 2. It is not possible to configure the outbound port for RDS 3. Access Mostly Uused Products by 50000+ Subscribers 4. Configure RDS my.conf file, which returns data on 3372
Exp: When the user specifies an EC2 security group as the source, he is allowing incoming traffic from all the EC2 instances that use that particular EC2 security group. The DB security group rules apply only to inbound traffic; outbound traffic is not currently permitted for the DB instances.
Question : Being a QuickTechie.com AWS Developer you are configuring MySQL RDS with PIOPS. What should be the minimum size of DB storage provided by the user?