removed debug package
This commit is contained in:
parent
39a132a44e
commit
842b347c7e
1 changed files with 2 additions and 4 deletions
|
@ -19,7 +19,7 @@ short_description: create, delete, accept, and reject VPC peering connections be
|
||||||
description:
|
description:
|
||||||
- Read the AWS documentation for VPC Peering Connections
|
- Read the AWS documentation for VPC Peering Connections
|
||||||
U(http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-peering.html)
|
U(http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-peering.html)
|
||||||
version_added: "2.1"
|
version_added: "2.1"
|
||||||
options:
|
options:
|
||||||
vpc_id:
|
vpc_id:
|
||||||
description:
|
description:
|
||||||
|
@ -192,9 +192,7 @@ try:
|
||||||
HAS_BOTO3 = True
|
HAS_BOTO3 = True
|
||||||
except ImportError:
|
except ImportError:
|
||||||
HAS_BOTO3 = False
|
HAS_BOTO3 = False
|
||||||
|
|
||||||
import q
|
|
||||||
|
|
||||||
|
|
||||||
def describe_peering_connections(vpc_id, peer_vpc_id, client):
|
def describe_peering_connections(vpc_id, peer_vpc_id, client):
|
||||||
result = client.describe_vpc_peering_connections(Filters=[
|
result = client.describe_vpc_peering_connections(Filters=[
|
||||||
|
|
Loading…
Reference in a new issue