CloudFormation Flashcards

1
Q

Can I create a dynamic amount of resources?

A

No, you cannot.

Everything CloudFormation has to be declared,

so you cannot perform code generation.

You cannot have dynamic type of code generation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

is every AWS Service supported?

A

The answer is almost.

There is only few small ones that are not there yet,

and you can work around that

using the AWS Lambda Custom Resources.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

resources

A

core of your CloudFormation templates and they’re mandatory. Your CloudFormation template cannot work without the Resources block.

represent the different AWS components that will be created and configured.

resources and they can reference each other,
so you can link the resources together. For example, you can link a security group and an EC2 instance.

AWS will figure out the creation, updates, and deletion of the resources for us,

there are over 224 types of resources.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

any resource has the following form.

A

AWS:: aws-product-name :: data-type-name

AWS::AmazonMQ::Broker

How well did you know this?
1
Not at all
2
3
4
5
Perfectly