Skip to content

Commit

Permalink
* 1.6.1 -- 2026-03-25
Browse files Browse the repository at this point in the history
  - policies/sc-servicecatalog-t2
    - granted select ec2 permissions
  • Loading branch information
badra001 committed Mar 25, 2026
1 parent 76b7b50 commit 77b852c
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,7 @@
- created policies
- policies/sc-readonly
- included AWSSupportAccess in this policy

* 1.6.1 -- 2026-03-25
- policies/sc-servicecatalog-t2
- granted select ec2 permissions
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "1.6.0"
_module_version = "1.6.1"
}
22 changes: 22 additions & 0 deletions policies/sc-servicecatalog-t2/policy.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,26 @@ data "aws_iam_policy_document" "inline" {
]
resources = ["*"]
}
statement {
sid = "EC2Actions"
effect = "Allow"
actions = [
"ec2:StopInstances",
"ec2:StartInstances",
"ec2:RunInstances",
"ec2:RebootInstances",
"ec2:ModifyInstanceAttribute",
"ec2:DescribeVolumesModifications",
"ec2:DescribeVolumes",
"ec2:DescribeVolumeStatus",
"ec2:DescribeVolumeAttribute",
"ec2:DescribeTags",
"ec2:DescribeSecurityGroups",
"ec2:DescribeSecurityGroupRules",
"ec2:AssociateSecurityGroupVpc",
"ec2:GetSecurityGroupsForVpc",
]
resources = ["*"]
}
}

0 comments on commit 77b852c

Please sign in to comment.