Question : QuickTechie.com has five branches across the globe (NewYork, Geneva, HongKong, Mumbai and London). They want to expand their data centers such that their web server will be in the AWS and each branch would have their own database in the local data center. Based on the user login, the company wants to connect to the data center. While designing this scenario with the AWS VPC CloudHub, which of the below mentioned important factors should QuickTechie ensure?
1. Each site cannot have an overlapping IP range and unique Autonomous System Numbers for each gateway. 2. Each site must have the same Autonomous System Numbers for each gateway and the IP address of each site should be within the VPC CIDR. 3. Access Mostly Uused Products by 50000+ Subscribers 4. Each site should have the same Autonomous System Numbers and unique Border Gateway Protocol.
Correct Answer : Get Lastest Questions and Answer : Exp: A Virtual Private Cloud (VPC) is a virtual network dedicated to the user's AWS account. The user can create subnets as per the requirement within a VPC. If the user wants to connect VPC from his own data centre, he can setup a public and VPN only subnet which uses hardware VPN access to connect with his data centre. If the organization has multiple VPN connections, he can provide secure communication between sites using the AWS VPN CloudHub. The VPN CloudHub operates on a simple hub-and-spoke model that the user can use with or without a VPC. To use the AWS VPN CloudHub, the user must create a virtual private gateway with multiple customer gateways, each with unique Border Gateway Protocol (BGP) Autonomous System Numbers (ASNs). Customer gateways advertise the appropriate routes (BGP prefixes) over their VPN connections. These routing advertisements are received and re-advertised to each BGP peer, enabling each site to send data to and receive data from other sites. The routes for each spoke must have unique ASNs and the sites must not have overlapping IP ranges. Each site can also send and receive data from the VPC as if they were using a standard VPN connection.
Question :
The following example shows a policy you could assign to Bob to allow him to manage his own access keys
Correct Answer : Get Lastest Questions and Answer : The above example shows a policy you could assign to Bob to allow him to manage his own access keys. and that the resource is Bob himself.
Question : Danial is the main administrator in HadoopExam Corp., and he decides to use paths to help delineate the users in the company and set up a separate administrator group for each path-based division. Following is a subset of the full list of paths he plans to use: /marketing /sales /tech /billing /risk Danial creates an administrator group for the marketing part of the company and calls it Marketing_Admin. He assigns it the /marketing path. The group's ARN is arn:aws:iam::123456789012:group/marketing/Marketing_Admin. Danial assigns the following policy to the Marketing_Admin group that gives the group permission to use all IAM actions with all groups and users in the /marketing path { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "iam:*", "Resource": [ "arn:aws:iam::123456789012:group/marketing/*", "arn:aws:iam::123456789012:user/marketing/*" ] }, { "Effect": "Allow", "Action": "s3:*", "Resource": "arn:aws:s3:::example_bucket/marketing/*" }, { "Effect": "Allow", "Action": "s3:ListBucket*", "Resource": "arn:aws:s3:::example_bucket", "Condition": {"StringLike": {"s3:prefix": "marketing/*"}} } ]} The policy gives the Marketing_Admin group permission to perform 1. Any Amazon S3 actions on the objects in the portion of the corporate bucket dedicated to the marketing employees in the company 2. Only object addition on Amazon S3 in the portion of the corporate bucket dedicated to the marketing employees in the company 3. Access Mostly Uused Products by 50000+ Subscribers 4. None of the above
2. Create two separate VPCs in different zones. Setup two EC2 instances by installing a DB in the two different VPCs and enable the failover mechanism. Setup the App server with one of the public subnets of any VPC. 3. Create a VPC with one private and one public subnet in separate AZs. Setup the EC2 instance with a DB in the private subnet and the web application in a public subnet. 4. Create a VPC with two private subnets and a public subnet. In separate AZs and setup RDS with the multi AZ feature by creating a subnet group. Launch a web application in the public subnet.