Skip to content

Commit

Permalink
modified based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
mandar242 committed Jun 20, 2024
1 parent 8614c1f commit ead2ae4
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions plugins/modules/autoscaling_group_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
type: str
sample: "arn:aws:autoscaling:us-west-2:123456789012:autoScalingGroup:10787c52-0bcb-427d-82ba-c8e4b008ed2e:autoScalingGroupName/dev11"
auto_scaling_group_name:
description: Name of autoscaling group
description: Name of autoscaling group.
returned: success
type: str
sample: "public-webapp-production-1"
Expand Down Expand Up @@ -164,19 +164,19 @@
availability_zone:
description: The Availability Zone of the instance.
type: str
sample: ap-southeast-2a
sample: "ap-southeast-2a"
health_status:
description: The last reported health status of the instance.
type: str
sample: "Healthy"
instance_id:
description: The ID of the instance.
type: str
sample: i-012345678
sample: "i-012345678"
instance_type:
description: The instance type size of the running instance.
type: str
sample: t2.micro
sample: "t2.micro"
launch_template:
description: The EC2 launch template to base instance configuration on.
type: dict
Expand Down Expand Up @@ -236,12 +236,12 @@
type: list
sample: ["elb-webapp-prod"]
max_size:
description: Maximum size of group
description: Maximum size of group.
returned: success
type: int
sample: 3
min_size:
description: Minimum size of group
description: Minimum size of group.
returned: success
type: int
sample: 1
Expand Down Expand Up @@ -302,15 +302,15 @@
}
]
target_group_arns:
description: List of ARNs of the target groups that the ASG populates
description: List of ARNs of the target groups that the ASG populates.
returned: success
type: list
sample: [
"arn:aws:elasticloadbalancing:ap-southeast-2:123456789012:targetgroup/target-group-host-hello/1a2b3c4d5e6f1a2b",
"arn:aws:elasticloadbalancing:ap-southeast-2:123456789012:targetgroup/target-group-path-world/abcd1234abcd1234"
]
target_group_names:
description: List of names of the target groups that the ASG populates
description: List of names of the target groups that the ASG populates.
returned: success
type: list
sample: [
Expand All @@ -320,7 +320,8 @@
termination_policies:
description: A list of termination policies for the group.
returned: success
type: str
type: list
elements: str
sample: ["Default"]
traffic_sources:
description: The traffic sources associated with this Auto Scaling group.
Expand Down

0 comments on commit ead2ae4

Please sign in to comment.