update open to match backend (#27158)

This commit is contained in:
Angel Garbarino
2024-05-21 10:45:04 -06:00
committed by GitHub
parent e9f9e7d7f0
commit 18102bdf00

View File

@@ -150,6 +150,17 @@ const azure = {
label: 'Tenant ID',
type: 'string',
},
identityTokenAudience: {
editType: 'string',
fieldGroup: 'default',
helpText: 'Audience of plugin identity tokens',
type: 'string',
},
identityTokenTtl: {
editType: 'ttl',
fieldGroup: 'default',
helpText: 'Time-to-live of plugin identity tokens',
},
},
};
@@ -389,6 +400,23 @@ const gcp = {
defaultValue: 'field1,field2',
label: 'iam_metadata',
},
identityTokenAudience: {
editType: 'string',
fieldGroup: 'default',
helpText: 'Audience of plugin identity tokens',
type: 'string',
},
identityTokenTtl: {
editType: 'ttl',
fieldGroup: 'default',
helpText: 'Time-to-live of plugin identity tokens',
},
serviceAccountEmail: {
editType: 'string',
fieldGroup: 'default',
helpText: 'Email ID for the Service Account to impersonate for Workload Identity Federation.',
type: 'string',
},
},
};