Skip to content

Commit

Permalink
Make example AWS UUIDS follow a specific pattern - RDS
Browse files Browse the repository at this point in the history
Split from ansible-collections#1070 due to test concurrency problems
  • Loading branch information
tremble committed Sep 28, 2022
1 parent 14e0668 commit 5eb82b6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/1073-gitleaks-2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
trivial:
- various modules - Update example Account IDs and IAM UUIDs for consistency (https://github.com/ansible-collections/amazon.aws/pull/1070).
4 changes: 2 additions & 2 deletions plugins/modules/rds_instance_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
description: ARN of the database instance
returned: always
type: str
sample: arn:aws:rds:us-west-2:111111111111:db:helloworld-rds
sample: arn:aws:rds:us-west-2:123456789012:db:helloworld-rds
db_instance_class:
description: Instance class of the database instance
returned: always
Expand Down Expand Up @@ -248,7 +248,7 @@
description: KMS Key ID
returned: always
type: str
sample: arn:aws:kms:us-west-2:111111111111:key/abcd1234-0000-abcd-1111-0123456789ab
sample: arn:aws:kms:us-west-2:123456789012:key/abcd1234-0000-abcd-1111-0123456789ab
latest_restorable_time:
description: Latest time to which a database can be restored with point-in-time restore
returned: always
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/rds_option_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
description: The Amazon Resource Name (ARN) for the option group.
returned: always
type: str
sample: "arn:aws:rds:ap-southeast-2:721066863947:og:ansible-test-option-group"
sample: "arn:aws:rds:ap-southeast-2:123456789012:og:ansible-test-option-group"
option_group_description:
description: Provides a description of the option group.
returned: always
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/rds_option_group_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
description: The Amazon Resource Name (ARN) for the option group.
returned: always
type: str
sample: "arn:aws:rds:ap-southeast-2:721066863947:og:ansible-test-option-group"
sample: "arn:aws:rds:ap-southeast-2:123456789012:og:ansible-test-option-group"
option_group_description:
description: Provides a description of the option group.
returned: always
Expand Down
8 changes: 4 additions & 4 deletions plugins/modules/rds_snapshot_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
description: Snapshot ARN
returned: always
type: str
sample: arn:aws:rds:us-west-2:111111111111:snapshot:rds:hello-world-rds-us1-2018-05-16-04-03
sample: arn:aws:rds:us-west-2:123456789012:snapshot:rds:hello-world-rds-us1-2018-05-16-04-03
db_snapshot_identifier:
description: Snapshot name
returned: always
Expand Down Expand Up @@ -129,7 +129,7 @@
description: ID of the KMS Key encrypting the snapshot
returned: always
type: str
sample: arn:aws:kms:us-west-2:111111111111:key/abcd1234-1234-aaaa-0000-1234567890ab
sample: arn:aws:kms:us-west-2:123456789012:key/abcd1234-1234-aaaa-0000-1234567890ab
license_model:
description: License model
returned: always
Expand Down Expand Up @@ -211,7 +211,7 @@
description: ARN of the database snapshot
returned: always
type: str
sample: arn:aws:rds:ca-central-1:111111111111:cluster-snapshot:test-aurora-snapshot
sample: arn:aws:rds:ca-central-1:123456789012:cluster-snapshot:test-aurora-snapshot
db_cluster_snapshot_identifier:
description: Snapshot identifier
returned: always
Expand All @@ -236,7 +236,7 @@
description: ID of the KMS Key encrypting the snapshot
returned: always
type: str
sample: arn:aws:kms:ca-central-1:111111111111:key/abcd1234-abcd-1111-aaaa-0123456789ab
sample: arn:aws:kms:ca-central-1:123456789012:key/abcd1234-abcd-1111-aaaa-0123456789ab
license_model:
description: License model
returned: always
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/rds_subnet_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
description: The ARN of the DB subnet group
returned: I(state=present)
type: str
sample: "arn:aws:rds:eu-north-1:721066863947:subgrp:ansible-test-13950442"
sample: "arn:aws:rds:eu-north-1:123456789012:subgrp:ansible-test-13950442"
tags:
description: The tags associated with the subnet group
returned: I(state=present)
Expand Down

0 comments on commit 5eb82b6

Please sign in to comment.