mirror of
https://github.com/ansible/awx.git
synced 2026-05-06 08:57:35 -02:30
Add missing ec2 group by choices
This commit is contained in:
@@ -1061,16 +1061,18 @@ class InventorySourceOptions(BaseModel):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def get_ec2_group_by_choices(cls):
|
def get_ec2_group_by_choices(cls):
|
||||||
return [
|
return [
|
||||||
('availability_zone', _('Availability Zone')),
|
|
||||||
('ami_id', _('Image ID')),
|
('ami_id', _('Image ID')),
|
||||||
|
('availability_zone', _('Availability Zone')),
|
||||||
|
('aws_account', _('Account')),
|
||||||
('instance_id', _('Instance ID')),
|
('instance_id', _('Instance ID')),
|
||||||
|
('instance_state', _('Instance State')),
|
||||||
('instance_type', _('Instance Type')),
|
('instance_type', _('Instance Type')),
|
||||||
('key_pair', _('Key Name')),
|
('key_pair', _('Key Name')),
|
||||||
('region', _('Region')),
|
('region', _('Region')),
|
||||||
('security_group', _('Security Group')),
|
('security_group', _('Security Group')),
|
||||||
('tag_keys', _('Tags')),
|
('tag_keys', _('Tags')),
|
||||||
('vpc_id', _('VPC ID')),
|
|
||||||
('tag_none', _('Tag None')),
|
('tag_none', _('Tag None')),
|
||||||
|
('vpc_id', _('VPC ID')),
|
||||||
]
|
]
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
|||||||
Reference in New Issue
Block a user