Fix object storage credential custom endpoint and resource manager regex commnet (#178)
This commit is contained in:
parent
c7effac5c7
commit
cfaf8f2605
2 changed files with 3 additions and 3 deletions
|
|
@ -70,10 +70,10 @@ func (r *credentialResource) Configure(ctx context.Context, req resource.Configu
|
||||||
|
|
||||||
var apiClient *objectstorage.APIClient
|
var apiClient *objectstorage.APIClient
|
||||||
var err error
|
var err error
|
||||||
if providerData.PostgreSQLCustomEndpoint != "" {
|
if providerData.ObjectStorageCustomEndpoint != "" {
|
||||||
apiClient, err = objectstorage.NewAPIClient(
|
apiClient, err = objectstorage.NewAPIClient(
|
||||||
config.WithCustomAuth(providerData.RoundTripper),
|
config.WithCustomAuth(providerData.RoundTripper),
|
||||||
config.WithEndpoint(providerData.PostgreSQLCustomEndpoint),
|
config.WithEndpoint(providerData.ObjectStorageCustomEndpoint),
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
apiClient, err = objectstorage.NewAPIClient(
|
apiClient, err = objectstorage.NewAPIClient(
|
||||||
|
|
|
||||||
|
|
@ -171,7 +171,7 @@ func (r *projectResource) Schema(_ context.Context, _ resource.SchemaRequest, re
|
||||||
),
|
),
|
||||||
mapvalidator.ValueStringsAre(
|
mapvalidator.ValueStringsAre(
|
||||||
stringvalidator.RegexMatches(
|
stringvalidator.RegexMatches(
|
||||||
regexp.MustCompile(`[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`),
|
regexp.MustCompile(`^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`),
|
||||||
"must match expression"),
|
"must match expression"),
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue