AWS credentials no longer mandatory (#11765)

This commit is contained in:
MadsRC 2025-06-17 02:32:10 +02:00 committed by GitHub
parent 49b957d14c
commit 2224fd96be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -225,21 +225,21 @@ const PROVIDER_CREDENTIAL_FIELDS: Record<Providers, ProviderCredentialField[]> =
key: "aws_access_key_id",
label: "AWS Access Key ID",
type: "password",
required: true,
required: false,
tooltip: "You can provide the raw key or the environment variable (e.g. `os.environ/MY_SECRET_KEY`)."
},
{
key: "aws_secret_access_key",
label: "AWS Secret Access Key",
type: "password",
required: true,
required: false,
tooltip: "You can provide the raw key or the environment variable (e.g. `os.environ/MY_SECRET_KEY`)."
},
{
key: "aws_region_name",
label: "AWS Region Name",
placeholder: "us-east-1",
required: true,
required: false,
tooltip: "You can provide the raw key or the environment variable (e.g. `os.environ/MY_SECRET_KEY`)."
}
],