You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to add full inbound traffic within my VPC so that any sagemaker users in my team can access my RDSproxy.I am using a postgres database with tcp 5432. In the CDK, I have used the code below but its not working. Any Suggestions how to open full inbound traffic for multi sagemaker users.
// Allow all security groups within the VPC to access the RDS Proxy on port 5432
rdsProxySecurityGroup.addIngressRule(
Peer.ipv4(vpc.vpcCidrBlock),
Port.tcp(5432),
'Allow access from all security groups within the VPC'
);
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I want to add full inbound traffic within my VPC so that any sagemaker users in my team can access my RDSproxy.I am using a postgres database with tcp 5432. In the CDK, I have used the code below but its not working. Any Suggestions how to open full inbound traffic for multi sagemaker users.
// Allow all security groups within the VPC to access the RDS Proxy on port 5432
rdsProxySecurityGroup.addIngressRule(
Peer.ipv4(vpc.vpcCidrBlock),
Port.tcp(5432),
'Allow access from all security groups within the VPC'
);
Beta Was this translation helpful? Give feedback.
All reactions