How can i used CloudFormation to add a CodeCommit Approval Rule Template

0

Hi, i need help using CloudFormation to add a CodeCommit Approval Rule Template

Nafiu
已提問 2 個月前檢視次數 401 次
2 個答案
0
已接受的答案

Hello.

Creation of approval rule templates is not provided by CloudFormation officially, so you can create them from CloudFormation templates by using packages published by the community as described in the GitHub issue below.
https://github.com/aws-cloudformation/cloudformation-coverage-roadmap/issues/329#issuecomment-743093982

profile picture
專家
已回答 2 個月前
0

To add a CodeCommit approval rule template using CloudFormation, you can include the necessary resources and properties in your CloudFormation template.

  • Add an AWS::CodeCommit::ApprovalRuleTemplate resource to define the approval rule template. Specify properties like:
ApprovalRuleTemplateName
ApprovalRuleTemplateContent
ApprovalRuleTemplateDescription

The ApprovalRuleTemplateContent property defines the approval rule configuration as a JSON string. It supports properties like NumberOfApprovalsNeeded, ApprovalPoolMembers etc.

  • You can use pseudo parameters like Ref and GetAtt to reference the template in other resources as needed.
  • Deploy the CloudFormation stack to create the approval rule template.
  • To update an existing template, update the ApprovalRuleTemplateContent property and redeploy the stack.
profile picture
專家
已回答 2 個月前
  • I did use it

    AWSTemplateFormatVersion: '2010-09-09' Resources: MyApprovalRuleTemplate: Type: 'AWS::CodeCommit::ApprovalRuleTemplate' Properties: ApprovalRuleTemplateName: 'MyApprovalRuleTemplate' ApprovalRuleTemplateContent: DestinationReferences: - !Sub 'refs/heads/${Branch}' ApprovalRuleContent: Type: 'PullRequestApprovalRuleContent' Title: 'Code review required' Rules: - Type: 'Approvers' NumberOfApprovalsNeeded: 1

    But i get an error below

    Template format error: Unrecognized resource types: [AWS::CodeCommit::ApprovalRuleTemplate] (Service: AmazonCloudFormation; Status Code: 400; Error Code: ValidationError; Request ID: 8e7788cb-a8a7-418d-a3f9-aba8313551a2; Proxy: null)

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

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

回答問題指南