Skip to content

Commit

Permalink
Fix docs issues in aws_s3_bucket_info and ec2_vpc_vpn (ansible-collec…
Browse files Browse the repository at this point in the history
…tions#47)

* Make sure that example string is parsed as string and not as datetime.

* Make sure that expression is treated as string.

This is probably not the correct value either, but at least it doesn't cause ansible-doc --json to crash.

This commit was initially merged in https://github.com/ansible-collections/community.aws
See: ansible-collections/community.aws@a66b5ee
  • Loading branch information
felixfontein authored and goneri committed Jun 25, 2021
1 parent 5c8d621 commit f5822f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/ec2_vpc_vpn.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@
vgw_telemetry: [{
'outside_ip_address': 'string',
'status': 'up',
'last_status_change': datetime(2015, 1, 1),
'last_status_change': 'datetime(2015, 1, 1)',
'status_message': 'string',
'accepted_route_count': 123
}]
Expand Down

0 comments on commit f5822f1

Please sign in to comment.