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 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则

相关内容