Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typo r_studio_package_manager_url in sagemaker domain #38547

2 changes: 1 addition & 1 deletion internal/service/sagemaker/domain.go
Original file line number Diff line number Diff line change
Expand Up @@ -1238,7 +1238,7 @@ func expandRStudioServerProDomainSettings(l []interface{}) *sagemaker.RStudioSer
config.RStudioConnectUrl = aws.String(v)
}

if v, ok := m["r_studio_packageManager_url"].(string); ok && v != "" {
if v, ok := m["r_studio_package_manager_url"].(string); ok && v != "" {
config.RStudioPackageManagerUrl = aws.String(v)
}

Expand Down