Skip to content

Commit

Permalink
Merge pull request #737 from sgratch/add_region_and_project_fields_to…
Browse files Browse the repository at this point in the history
…_openstack_cred_view

Add region and project fields to the OpenStack Credentials view page
  • Loading branch information
yaacov authored Sep 20, 2023
2 parents f80443d + bceb191 commit 9b06e18
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ export const OpenstackCredentialsList: React.FC<ListComponentProps> = ({ secret,
label: t('Project ID'),
description: t('OpenStack project ID for token credentials.'),
},
regionName: {
label: t('Region'),
description: t('OpenStack region.'),
},
insecureSkipVerify: {
label: t('Skip certificate validation'),
description: t("If true, the provider's REST API TLS certificate won't be validated."),
Expand All @@ -89,6 +93,10 @@ export const OpenstackCredentialsList: React.FC<ListComponentProps> = ({ secret,
label: t('Username'),
description: t('OpenStack REST API user name.'),
},
regionName: {
label: t('Region'),
description: t('OpenStack region.'),
},
projectName: {
label: t('Project'),
description: t('OpenStack project for token credentials.'),
Expand Down Expand Up @@ -122,6 +130,14 @@ export const OpenstackCredentialsList: React.FC<ListComponentProps> = ({ secret,
label: t('Application credential secret'),
description: t('OpenStack REST API application credential secret.'),
},
regionName: {
label: t('Region'),
description: t('OpenStack region.'),
},
projectName: {
label: t('Project'),
description: t('OpenStack project.'),
},
insecureSkipVerify: {
label: t('Skip certificate validation'),
description: t("If true, the provider's REST API TLS certificate won't be validated."),
Expand Down Expand Up @@ -151,6 +167,14 @@ export const OpenstackCredentialsList: React.FC<ListComponentProps> = ({ secret,
label: t('Username'),
description: t('OpenStack REST API user name.'),
},
regionName: {
label: t('Region'),
description: t('OpenStack region.'),
},
projectName: {
label: t('Project'),
description: t('OpenStack project.'),
},
domainName: {
label: t('Domain'),
description: t('OpenStack domain for application credential credentials.'),
Expand Down

0 comments on commit 9b06e18

Please sign in to comment.