Skip to content

Commit

Permalink
Merge pull request #1066 from ulucinar/fix-endpoints-config
Browse files Browse the repository at this point in the history
Make endpoints provider configuration value single-element list
  • Loading branch information
erhancagirici authored Jan 10, 2024
2 parents a7ac459 + 459bd0b commit 279ae75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/clients/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func DefaultTerraformSetupBuilder(_ context.Context, pc *v1beta1.ProviderConfig,
for _, service := range pc.Spec.Endpoint.Services {
endpoints[service] = aws.ToString(pc.Spec.Endpoint.URL.Static)
}
ps.Configuration[keyEndpoints] = endpoints
ps.Configuration[keyEndpoints] = []any{endpoints}
}
}
}
Expand Down

0 comments on commit 279ae75

Please sign in to comment.