forked from ansible-collections/amazon.aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ec2_vpc_endpoint - fixup deletion 'changed' (ansible-collections#362)
* Ensure ec2_vpc_endpoint returns True when deleting an Endpoint Return not changed when state=absent and endpoint has already been deleted * Add minimal endpoint tests This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@a89ec90
- Loading branch information
1 parent
686d5c3
commit e848af9
Showing
4 changed files
with
416 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
cloud/aws | ||
shippable/aws/group2 | ||
ec2_vpc_endpoint_info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
vpc_name: '{{ resource_prefix }}-vpc' | ||
vpc_seed: '{{ resource_prefix }}' | ||
vpc_cidr: '10.{{ 256 | random(seed=vpc_seed) }}.22.0/24' | ||
|
||
# S3 and EC2 should generally be available... | ||
endpoint_service_a: 'com.amazonaws.{{ aws_region }}.s3' | ||
endpoint_service_b: 'com.amazonaws.{{ aws_region }}.ec2' |
Oops, something went wrong.