When instantiating resources (Security Groups, EC2 instances, etc) using a CloudFormation template, one does not always have to specify a VpcId explicitly. When one does not do so, the default VPC for a given account is selected automatically.
Is it possible to designate a different VPC as the default for the purposes of creating a stack, so that this other VPC is used in cases where a VpcId is not specified explicitly?
I am aware of this answer which suggests that one can pass a different VPC explicitly to all resources that require it, but this seems more verbose than necessary if there's a way to tell CloudFormation "Please treat VPC X as the default for all resources".