0
0
AWScloud~10 mins

Cloud deployment models (public, private, hybrid) in AWS - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to specify the cloud deployment model as public in AWS.

AWS
deployment_model = "[1]"
Drag options to blanks, or click blank then click option'
Ahybrid
Bprivate
Cpublic
Dcommunity
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing private cloud with public cloud.
Choosing hybrid when only public is needed.
2fill in blank
medium

Complete the code to define a private cloud deployment model in AWS.

AWS
deployment_model = "[1]"
Drag options to blanks, or click blank then click option'
Apublic
Bprivate
Chybrid
Dcommunity
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting public cloud instead of private.
Mixing hybrid with private cloud.
3fill in blank
hard

Fix the error in the code to correctly set the hybrid cloud deployment model.

AWS
deployment_model = "[1]"
Drag options to blanks, or click blank then click option'
Ahybrid
Bprivate
Cpublic
Dcommunity
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'public' or 'private' instead of 'hybrid'.
Confusing community cloud with hybrid.
4fill in blank
hard

Fill both blanks to complete the AWS CLI command for creating a VPC in a public cloud deployment.

AWS
aws ec2 create-vpc --cidr-block [1] --tag-specifications 'ResourceType=vpc,Tags=[{Key=Name,Value=[2]]'
Drag options to blanks, or click blank then click option'
A"10.0.0.0/16"
B"MyPrivateVPC"
C"MyPublicVPC"
D"192.168.0.0/24"
Attempts:
3 left
💡 Hint
Common Mistakes
Using a private VPC name for a public cloud VPC.
Choosing an incorrect CIDR block.
5fill in blank
hard

Fill all three blanks to define a hybrid cloud architecture using AWS services.

AWS
hybrid_architecture = {"on_premises": "[1]", "cloud": "[2]", "connection": "[3]"}
Drag options to blanks, or click blank then click option'
Adata_center
Baws_public_cloud
Caws_direct_connect
Dinternet_gateway
Attempts:
3 left
💡 Hint
Common Mistakes
Using internet gateway instead of Direct Connect for connection.
Confusing cloud with on-premises.