Skip to content

Commit

Permalink
Make endpoint provider configuration value single-element list
Browse files Browse the repository at this point in the history
Signed-off-by: Erhan Cagirici <[email protected]>
  • Loading branch information
erhancagirici committed Jan 5, 2024
1 parent d4326b3 commit 459bd0b
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 459bd0b

Please sign in to comment.