Question 398:
You are a Devops Engineer for your company. You are responsible for creating Cloudformation templates for your company. There is a requirement to ensure that an S3 bucket is created for all resources in development for logging purposes. How would you achieve this?
Answer options:
A.Create separate Cloudformation templates for Development and production. B.Create a parameter in the Cloudformation template and then use the Condition clause in the template to create an S3 bucket if the parameter has a value of development C.Create an S3 bucket from before and then just provide access based on the tag value mentioned in the Cloudformation template D.Use the metadata section in the Cloudformation template to decide on whether to create the S3 bucket or not.