AWS Cloudformation stack - best practices

0

Hello Team.

I am starting with cloudformation to create aws resources, so I would like to have some recommendations and best practices according your experience.

When I create cloudformation stacks to create resources, I understand these stacks must keep forever? or if I delete the stack, all my resources will be deleted? Is it possible to update some parameters in the stack? and this will delete the current resource and create new resource with new parameters?

Thank you.

Orlando
已提問 7 個月前檢視次數 211 次
1 個回答
0

Hello.

The parameters you update may replace the resource.
As described in the document below, if the parameter type is "Replacement", if you update it, it will be replaced with a new resource.
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html

If you want to keep the resources even if you delete the CloudFormation stack, the resources will be retained by creating it with "DeletionPolicy" set to "Retain".
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html

profile picture
專家
已回答 7 個月前
profile pictureAWS
專家
已審閱 7 個月前
  • Yes, DeletePolicy = Retain is possible. But, best practice is to keep resources linked to a stack all the time to be able to manage the resource config from the stack by updates to the template.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南