Skip to content

Commit

Permalink
Update Examples with FQCN (ansible-collections#67)
Browse files Browse the repository at this point in the history
Updated module examples with FQCN

Signed-off-by: Abhijeet Kasurde <[email protected]>

This commit was initially merged in https://github.com/ansible-collections/community.aws
See: ansible-collections/community.aws@98173ae
  • Loading branch information
Akasurde authored and mandar242 committed Oct 24, 2024
1 parent 8987d17 commit 19000c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/modules/ec2_transit_gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@

EXAMPLES = '''
- name: Create a new transit gateway using defaults
ec2_transit_gateway:
community.aws.ec2_transit_gateway:
state: present
region: us-east-1
description: personal-testing
register: created_tgw
- name: Create a new transit gateway with options
ec2_transit_gateway:
community.aws.ec2_transit_gateway:
asn: 64514
auto_associate: no
auto_propagate: no
Expand All @@ -110,13 +110,13 @@
status: testing
- name: Remove a transit gateway by description
ec2_transit_gateway:
community.aws.ec2_transit_gateway:
state: absent
region: us-east-1
description: personal-testing
- name: Remove a transit gateway by id
ec2_transit_gateway:
community.aws.ec2_transit_gateway:
state: absent
region: ap-southeast-2
transit_gateway_id: tgw-3a9aa123
Expand Down

0 comments on commit 19000c0

Please sign in to comment.