Skip to content

Commit

Permalink
Merge pull request #526 from awslabs/apply-sub-function-to-partition
Browse files Browse the repository at this point in the history
Apply sub function to partition
  • Loading branch information
bmorrissirromb authored Aug 28, 2024
2 parents a4ced15 + 76c0def commit 010f95c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
[tool.poetry]
name = "rdk"
version = "0.17.13"
version = "0.17.14"
description = "Rule Development Kit CLI for AWS Config"
authors = [
"AWS RDK Maintainers <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion rdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
#
# or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

MY_VERSION = "0.17.13"
MY_VERSION = "0.17.14"
3 changes: 2 additions & 1 deletion rdk/template/configRule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,8 @@ Resources:
- logs:PutLogEvents
- logs:DescribeLogStreams
Effect: Allow
Resource: "arn:${AWS::Partition}:logs:*:*:log-group:/aws/lambda/RDK-Rule-Function*" # Consider scoping to the current account only, if that doesn't break cross-account
Resource:
Fn::Sub: "arn:${AWS::Partition}:logs:*:*:log-group:/aws/lambda/RDK-Rule-Function*" # Consider scoping to the current account only, if that doesn't break cross-account
- Sid: "PutConfigEvaluations"
Action:
- config:PutEvaluations
Expand Down

0 comments on commit 010f95c

Please sign in to comment.