Skip to content

Commit 2184467

Browse files
Bump ruff from 0.15.10 to 0.16.4 (#342)
* Bump ruff from 0.15.10 to 0.16.4 Bumps [ruff](https://github.com/astral-sh/ruff) from 0.15.10 to 0.16.4. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.15.10...0.16.4) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.16.4 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Apply formatting --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthew Cane <39704070+MatthewCane@users.noreply.github.com> Co-authored-by: Matthew Cane <matthew.cane@citizensadvice.org.uk>
1 parent d45db62 commit 2184467

2 files changed

Lines changed: 29 additions & 26 deletions

File tree

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,10 @@ CrossAccountDomainDelegation(
2323
parent_zone_config=R53ParentZoneConfig(
2424
account_id="1234566789012",
2525
zone_name="acme.org",
26-
role_name="R53UpdateRole" # existing role in the parent zone account
26+
role_name="R53UpdateRole", # existing role in the parent zone account
2727
),
28-
hosted_zone=zone
28+
hosted_zone=zone,
2929
)
30-
3130
```
3231

3332
</details>
@@ -72,7 +71,9 @@ Makes it possible to deploy to imported EKS clusters.
7271
from ca_cdk_constructs.eks import EksClusterIntegration
7372

7473
# in an existing stack
75-
eks_integration = EksClusterIntegration(self, "EksIntegration", vpc=vpc, cluster_name="mycluster")
74+
eks_integration = EksClusterIntegration(
75+
self, "EksIntegration", vpc=vpc, cluster_name="mycluster"
76+
)
7677

7778
# for imported clusters the kubectl role must be manually added to aws-auth
7879
# The role ARN will also be available in the K8sAuthRoleArn output
@@ -100,7 +101,9 @@ See [the tests](./tests/eks/external_secrets/test_external_secrets_chart.py)
100101
Modifies the password of an Aurora cluster
101102

102103
```python
103-
modify_cluster_password = ModifyDBClusterPassword(self, "ModifyClusterPassword", cluster_id=cluster_id, secret=db_secret)
104+
modify_cluster_password = ModifyDBClusterPassword(
105+
self, "ModifyClusterPassword", cluster_id=cluster_id, secret=db_secret
106+
)
104107
modify_cluster_password.trigger_on_stack_create_update()
105108
# access the udnerlaying lambda to e.g. add it to a state machine
106109
modify_cluster_password.lambda_funct

uv.lock

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)