diff --git a/awx/main/models/credential.py b/awx/main/models/credential.py index 2975baf6d2..7b904c7975 100644 --- a/awx/main/models/credential.py +++ b/awx/main/models/credential.py @@ -34,7 +34,7 @@ class Credential(PasswordFieldsModel, CommonModelNameNotUnique): ('vmware', _('VMware vCenter')), ('gce', _('Google Compute Engine')), ('azure', _('Microsoft Azure')), - ('openstack', _('Openstack')), + ('openstack', _('OpenStack')), ] BECOME_METHOD_CHOICES = [ diff --git a/awx/main/models/inventory.py b/awx/main/models/inventory.py index 59e5e4759e..c8f6313c81 100644 --- a/awx/main/models/inventory.py +++ b/awx/main/models/inventory.py @@ -740,7 +740,7 @@ class InventorySourceOptions(BaseModel): ('gce', _('Google Compute Engine')), ('azure', _('Microsoft Azure')), ('vmware', _('VMware vCenter')), - ('openstack', _('Openstack')), + ('openstack', _('OpenStack')), ('custom', _('Custom Script')), ] diff --git a/awx/ui/static/js/lists/HomeGroups.js b/awx/ui/static/js/lists/HomeGroups.js index d732f2eb18..20c283b655 100644 --- a/awx/ui/static/js/lists/HomeGroups.js +++ b/awx/ui/static/js/lists/HomeGroups.js @@ -79,7 +79,7 @@ export default name: "Microsoft Azure", value: "azure" },{ - name: "Openstack", + name: "OpenStack", value: "openstack" }], sourceModel: 'inventory_source', diff --git a/awx/ui/static/js/lists/InventoryGroups.js b/awx/ui/static/js/lists/InventoryGroups.js index d405f6caa2..751ecdb900 100644 --- a/awx/ui/static/js/lists/InventoryGroups.js +++ b/awx/ui/static/js/lists/InventoryGroups.js @@ -48,7 +48,7 @@ export default name: "Microsoft Azure", value: "azure" },{ - name: "Openstack", + name: "OpenStack", value: "openstack" }], sourceModel: 'inventory_source',