-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Replicator implement cfn read for supported resources #12017
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replicator implement cfn read for supported resources #12017
Conversation
LocalStack Community integration with Pro 2 files ± 0 2 suites ±0 22m 32s ⏱️ - 1h 27m 7s Results for commit ff5fc1e. ± Comparison against base commit abb35c3. This pull request removes 2855 tests.
♻️ This comment has been updated with latest results. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good PR 👍 Just a minor suggestion
def generate_subnet_read_payload( | ||
ec2_client, schema, subnet_ids: Optional[list[str]] = None | ||
) -> list[EC2SubnetProperties]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion: Seems like generate_subnet_read_payload
could be use it for both list
and read
like you did in other resource providers.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah yes! That was the goal. Forgot to update that one! Thanks for the catch! 🙏
Motivation
Base implementation of
get
andlist
CloudFormation operation forVpc
,Subnet
,KmsKey
, andsecret
. This is in a continued effort to further the work with the cloudcontrol api.Changes