scottslowe-learning-tools/terraform/aws/simple-ec2/provider.tf
Scott Lowe 0014866674
Clean up simple EC2 environment
Remove hard-coded variables and move to `terraform.tfvars` for better portability. Rename variables file for greater consistency across environments. Add output to display IP address of spawned EC2 instance.

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-05-25 09:31:56 -06:00

3 lines
70 B
HCL

provider "aws" {
region = "${var.user_region}"
}