Probing security-group in/egress parameter parsing#37
Open
audreyll2 wants to merge 2 commits intoproject-vera:mainfrom
Open
Probing security-group in/egress parameter parsing#37audreyll2 wants to merge 2 commits intoproject-vera:mainfrom
audreyll2 wants to merge 2 commits intoproject-vera:mainfrom
Conversation
What I tested create-vpc create-security-group authorize-security-group-ingress with simple form authorize-security-group-ingress with shorthand --ip-permissions authorize-security-group-ingress with file:// JSON permissions authorize-security-group-egress with shorthand --ip-permissions describe-security-groups after each probe What I observed The security-group authorize path is being reached. GroupId is present in the debug output. But IpPermissions.N is empty. IpProtocol, FromPort, ToPort, and CidrIp are also not arriving with usable values. As a result, rule construction does not happen. The emulator returns Missing required parameter: IpPermissions. The cleanup path also shows a follow-up issue: the security group still reports VPC dependency state and cannot be deleted cleanly afterward. Next step First make the simple form work: --protocol tcp --port 22 --cidr 0.0.0.0/0 Then make structured --ip-permissions parsing work Then rerun the lifecycle flows that depend on security-group rules After that, clean up the security-group dependency state on delete
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What I tested
What I observed
Next step