AWS IAM connection for MySQL

This commit is contained in:
SPRINX0\prochazka
2024-10-08 09:30:51 +02:00
parent 7c51fcad96
commit d049d8c571
2 changed files with 5 additions and 7 deletions

View File

@@ -255,10 +255,10 @@
label="AWS Region"
name="awsRegion"
menu={() => {
return awsRegions.map(region => ({
text: region,
return awsRegions.map(awsRegion => ({
text: awsRegion,
onClick: () => {
$values.awsRegion = region;
$values = { ...$values, awsRegion };
},
}));
}}
@@ -270,7 +270,7 @@
<div class="col-6 mr-1">
<FormTextField
label="Access Key ID"
name="awsAccessKeyId"
name="accessKeyId"
disabled={isConnected || disabledFields.includes('accessKeyId')}
templateProps={{ noMargin: true }}
/>