Skip to content

Commit cb298ed

Browse files
Merge pull request #523 from awslabs/bmorrissirromb-patch-1
fix partition hardcode
2 parents 543f720 + 12f6dd3 commit cb298ed

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# 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.
88
[tool.poetry]
99
name = "rdk"
10-
version = "0.17.12"
10+
version = "0.17.13"
1111
description = "Rule Development Kit CLI for AWS Config"
1212
authors = [
1313
"AWS RDK Maintainers <[email protected]>",

rdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
#
77
# 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.
88

9-
MY_VERSION = "0.17.12"
9+
MY_VERSION = "0.17.13"

rdk/template/configRule.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ Resources:
278278
- logs:PutLogEvents
279279
- logs:DescribeLogStreams
280280
Effect: Allow
281-
Resource: "arn:aws:logs:*:*:log-group:/aws/lambda/RDK-Rule-Function*" # Consider scoping to the current account only, if that doesn't break cross-account
281+
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
282282
- Sid: "PutConfigEvaluations"
283283
Action:
284284
- config:PutEvaluations

0 commit comments

Comments
 (0)