What is the best solution for Formating Templatebody in JSON for StackSets?

0

I am trying to convert a regular CloudFormation Template to a stackset.

I need to deploy IAM permissions, mainly roles in multiple accounts.

Issue I'm having is the proper way to convert the IAM roles.I have in my existing CloudFormation to the stackset.

I was informed I had to put the old CloudFormation template inside the Templatebody of the CloudFormation Stack below; however, the format is not the same inside TemplateBody as it is in the original CF set. Is there some tool or better solution I can use to achieve this? If I type this out manually there's much room as the original CF template without stackset is 549 lines.

Here's an example of my StackSet template I have now.

{ "MyStackSet}": { "Type": "AWS::CloudFormation::StackSet", "DeletionPolicy": "Retain", "Properties": { "StackSetName": "ReadAndWriteRoles", "Description": "IAM Read and Write", "PermissionModel": "SELF_MANAGED", "ManagedExecution": { "Active": true }, "Tags": [ { "Key": "tag1", "Value": "value1" } ], "TemplateBody": "{\n "AWSTemplateFormatVersion": "2010-09-09",\n "Resources": {\n "PrismaCloudRole": {\n "Type": "AWS::IAM::Role"\n }\n }\n}\n" } } }

Any suggestions to achieve this?

Mjr
已提問 5 個月前檢視次數 692 次
1 個回答
0

Hello.

I think there is also a way to upload the original CloudFormation template to S3 and specify it with the S3 URL instead of embedding it with "TemplateBody".
You can use the CloudFormation template in S3 as is by using the parameter "TemplateURL".
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stackset.html#cfn-cloudformation-stackset-templateurl

profile picture
專家
已回答 5 個月前

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

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

回答問題指南