Skip to content

Commit

Permalink
Merge pull request #523 from awslabs/bmorrissirromb-patch-1
Browse files Browse the repository at this point in the history
fix partition hardcode
  • Loading branch information
bmorrissirromb authored Aug 6, 2024
2 parents 543f720 + 12f6dd3 commit cb298ed
Show file tree
Hide file tree
Showing 3 changed files with 3 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.12"
version = "0.17.13"
description = "Rule Development Kit CLI for AWS Config"
authors = [
"AWS RDK Maintainers <rdk-maintainers@amazon.com>",
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.12"
MY_VERSION = "0.17.13"
2 changes: 1 addition & 1 deletion rdk/template/configRule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ Resources:
- logs:PutLogEvents
- logs:DescribeLogStreams
Effect: Allow
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
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
- Sid: "PutConfigEvaluations"
Action:
- config:PutEvaluations
Expand Down

0 comments on commit cb298ed

Please sign in to comment.