Simplify the amount of typing for the user by allowing awsls vpc in addition to awsls aws_vpc (i.e., making the prefix aws_ optional).
Note: aws_vpc is the full Terraform resource type name, where the prefix aws references the provider (other providers are google, etc.). However, awsls is for AWS only, so the prefix is superfluous in this context.
Simplify the amount of typing for the user by allowing
awsls vpc
in addition toawsls aws_vpc
(i.e., making the prefixaws_
optional).Note:
aws_vpc
is the full Terraform resource type name, where the prefixaws
references the provider (other providers aregoogle
, etc.). However,awsls
is for AWS only, so the prefix is superfluous in this context.