Skip to main content

Make Terraform Development Faster

· One min read
Mohammed Yahya

There are simple Terraform provider flags you can add, which in development, will make planning, applying or destroying faster.

provider "aws" {
region = "eu-central-1"
profile = "cloudfalcon-dev"
# Make it faster by skipping something
skip_get_ec2_platforms = true
skip_metadata_api_check = true
skip_region_validation = true
skip_credentials_validation = true
skip_requesting_account_id = true
}

Check AWS Provider: