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 if we are to use FIPS aws endpoints with v2 golang this is the approach I took but find very hard to verify if it does the correctly use FIPS endpoints, any point would be appreciated cfg, err := config.LoadDefaultConfig( context.TODO(), config.WithRegion(*regionFlag), config.WithUseFIPSEndpoint(aws.FIPSEndpointStateEnabled), )
Lets say I am using s3 client after s3client = s3.NewFromConfig(cfg)
How can I verify this client is using FIPS urls not default s3 urls?
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
-
Hi if we are to use FIPS aws endpoints with v2 golang this is the approach I took but find very hard to verify if it does the correctly use FIPS endpoints, any point would be appreciated
cfg, err := config.LoadDefaultConfig( context.TODO(), config.WithRegion(*regionFlag), config.WithUseFIPSEndpoint(aws.FIPSEndpointStateEnabled), )
Lets say I am using s3 client after
s3client = s3.NewFromConfig(cfg)
How can I verify this client is using FIPS urls not default s3 urls?
Beta Was this translation helpful? Give feedback.
All reactions