A Cantrill - IAC (CloudFormation) Flashcards

1
Q

What are 2 Parameters in CFN?

A

Template and Pseudo Parameters are two methods to provide input to a template, which can influence what resources are provisioned, and the configuration of those resources.

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

What are CFN Intrinsic Functions?

A

Is a way to assign values to properties that are not available until runtime.

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

What are CF mappings?

A

Key values that are stored and referenced in templates. Improves portability

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

What dependency in a CFN template requires an IGW to be first created before proceeding?

A

An Elastic IP requires an IGW attached to a VPC in order to work.

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

What is the DependsOn attribute of CloudFormation?

A

DependsOn creates an explicit dependency for services that need other services attached in order to function properly.

For example an EIP will be created AFTER an InternetGatewayAttachment is complete and deleted before the IGW is deleted.

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

What is the limit for number of resources created in one CFN stack?

A

500 stack resource limits.

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

When should you use CFN nested stacks?

A

-when resources in a stack are > 500 resources
-When everything is “lifecycle linked” (created together, deleted together)

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

Does cross stack reference support cross region and cross account export?

A

No, to export values

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

T or F, a template is used to create one stack ONLY?

A

False. A CFN template can be used to create one or multiple stacks

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

What are stacksets in CFN?

A

StackSets are a feature of CloudFormation allowing infrastructure to be deployed and managed across multiple regions and multiple accounts from a single location.

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