You are creating a Cloud Formation template to deploy your CMS application running on an EC2 instance within your AWS account. Because you would like to deploy the application across multiple regions you have decided to create a Map of all the possible values for the base AMI. How should you invoke the !FindInMap function?
!FindInMap
!FindInMap [ MapName, TopLevelKey, SecondLevelKey ]
!FindInMap [ MapName, TopLevelKey ]
!FindInMap [ MapName ]
!FindInMap [ MapName, TopLevelKey, SecondLevelKey, ThirdLevelKey ]
Correct answer - !FindInMap [ MapName, TopLevelKey, SecondLevelKey ] : Read documentation link to view arguments
For more information visit