Based on Databricks documentation, the basic VPC requirements for a Databricks AWS workspace includes a NAT Gateway with access to the internet. However, this is usually a concern with more security-conscious enterprises.
- Copy
templates/variables_template.tfinto the root folder asvariables.tf - Update the
variables.tfwith the required information - Follow the terraform setup steps to get set up
- Recommended Set up a new AWS profile on your
aws cli, so that you can easily isolate your AWS credentials for testing- You can then set your
aws_vars.profilevariable to the profile name - Importantly, set
AWS_ACCESS_KEY_IDandAWS_SECRET_ACCESS_KEY
- You can then set your
- Recommended Set up a new AWS profile on your
- To initialize the terraform modules required:
terraform init - To dry-run the build:
terraform plan - To build:
terraform build