Add missing default value for moto.ec2.models.VPC.classic_link_dns_supported

Fixes #2629
This commit is contained in:
Andrey Kislyuk 2019-12-11 14:12:59 -08:00 committed by GitHub
parent 4d5bf1c5c6
commit f60ef02f9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2449,6 +2449,7 @@ class VPC(TaggedEC2Resource):
self.is_default = "true" if is_default else "false"
self.enable_dns_support = "true"
self.classic_link_enabled = "false"
self.classic_link_dns_supported = "false"
# This attribute is set to 'true' only for default VPCs
# or VPCs created using the wizard of the VPC console
self.enable_dns_hostnames = "true" if is_default else "false"