File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
infrastructure/stacks/iams-developer-roles Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -241,7 +241,9 @@ jobs:
241241 INPUT_RELEASE_TYPE : ${{ inputs.release_type }}
242242 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
243243 GITHUB_REPOSITORY : ${{ github.repository }}
244- run : poetry run python scripts/workflow/tag_and_release.py
244+ run : |
245+ pip install requests
246+ python scripts/workflow/tag_and_release.py
245247
246248
247249 regression-tests :
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ resource "aws_iam_policy" "dynamodb_management" {
100100 " dynamodb:DescribeTimeToLive" ,
101101 " dynamodb:DescribeTable" ,
102102 " dynamodb:DescribeContinuousBackups" ,
103+ " dynamodb:UpdateContinuousBackups" ,
103104 " dynamodb:ListTables" ,
104105 " dynamodb:DeleteTable" ,
105106 " dynamodb:CreateTable" ,
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ data "aws_iam_policy_document" "permissions_boundary" {
3838 " dynamodb:UntagResource" ,
3939 " dynamodb:ListTagsOfResource" ,
4040 " dynamodb:UpdateTable" ,
41+ " dynamodb:UpdateContinuousBackups" ,
4142
4243 # EC2 - networking infrastructure
4344 " ec2:Describe*" ,
You can’t perform that action at this time.
0 commit comments