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
Hi Team,
Can we add a feature to pass vpc configuration from plugin which can be used by CreateProcessingJob? There are customers who use VPCE endpoint to connect to their on-premise services from their notebook and when job is running in service accounts job fails since job won't have access to vpce endpoints.
The text was updated successfully, but these errors were encountered:
This is a reasonable ask. It's not currently supported in the GUI plugin.
As a workaround, I think you can do this using the CLI run-notebook run --extra ... and including the VPC config arguments to CreateProcessingJob but I haven't tried it myself.
Thank you!
I managed to get it working with running the job via command line by passing the Networking Config as --extra --extra '{ "NetworkConfig": { "EnableInterContainerTrafficEncryption": false, "EnableNetworkIsolation": false, "VpcConfig": { "SecurityGroupIds": [ "sg-xxx" ], "Subnets": [ "subnet-xxx" ] } } }'
I would really like if the UI would pass the vpc config from the sagemaker domain automatically.
Hi Team,
Can we add a feature to pass vpc configuration from plugin which can be used by
CreateProcessingJob
? There are customers who use VPCE endpoint to connect to their on-premise services from their notebook and when job is running in service accounts job fails since job won't have access to vpce endpoints.The text was updated successfully, but these errors were encountered: