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
Creating a VPC Endpoint does not have any options for specifying SecurityGroups to associate with the InterfaceVpcEndpoint
exportinterfaceInterfaceVpcEndpointPropsextendsInterfaceVpcEndpointOptions{/** * The VPC network in which the interface endpoint will be used. */
readonly vpc: IVpc;}exportinterfaceInterfaceVpcEndpointOptions{/** * The service to use for this interface VPC endpoint. */
readonly service: IInterfaceVpcEndpointService;/** * Whether to associate a private hosted zone with the specified VPC. This * allows you to make requests to the service using its default DNS hostname. * * @default true */readonlyprivateDnsEnabled?: boolean;/** * The subnets in which to create an endpoint network interface. At most one * per availability zone. * * @default private subnets */readonlysubnets?: SubnetSelection;}
The properties object to import a VPCEndpoint set up only takes in a single security group
/** * Construction properties for an ImportedInterfaceVpcEndpoint. */exportinterfaceInterfaceVpcEndpointAttributes{/** * The interface VPC endpoint identifier. */readonly vpcEndpointId: string;/** * The identifier of the security group associated with the interface VPC endpoint. */readonly securityGroupId: string;/** * The port of the service of the interface VPC endpoint. */readonly port: number;}
KingOfPoptart
changed the title
Creating a VPC Endpoint only allows for specifying a single SecurityGroup to associate with the VPCe
Creating/Importing a VPC Endpoint only allows for specifying a single SecurityGroup to associate with the VPCe
Jun 3, 2019
I'm not extremely familiar with CDK paradigms, but it seems like it'd be more CDK style to hold reference to the actual securityGroup(s) object as well rather than the securityGroupId(s).
…dpoints
Support a `securityGroups` for interface VPC endpoints in a non breaking way.
Clarify documentation on interface VPC endpoints connections.
Add missing Storage Gateway.
Closesaws#4589Closesaws#2699Closesaws#3446
jogold
added a commit
to jogold/aws-cdk
that referenced
this issue
Nov 7, 2019
…dpoints
Support a `securityGroups` prop for interface VPC endpoints in a non breaking way.
Clarify documentation on interface VPC endpoints connections.
Add missing Storage Gateway.
Closesaws#4589Closesaws#2699Closesaws#3446
…dpoints (#4908)
Support a `securityGroups` prop for interface VPC endpoints in a non breaking way.
Clarify documentation on interface VPC endpoints connections.
Add missing Storage Gateway.
Closes#4589Closes#2699Closes#3446
Creating a VPC Endpoint does not have any options for specifying SecurityGroups to associate with the InterfaceVpcEndpoint
The properties object to import a VPCEndpoint set up only takes in a single security group
CFN supports specifying multiple SecurityGroups -
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html
The text was updated successfully, but these errors were encountered: