diff --git a/cloud/terraform/README.md b/cloud/terraform/README.md index e17cd5d4..65896523 100644 --- a/cloud/terraform/README.md +++ b/cloud/terraform/README.md @@ -29,7 +29,7 @@ The following resources are NOT automatically created and need to be specified i ### Terraform Variables -In `ec2/variables.tf`, change the following variables to correspond to your existing EC2 infrastructure: +In `aws/variables.tf`, change the following variables to correspond to your existing EC2 infrastructure: * `admin_ip` - source IP address(es) that you will use to administer the system. Connections to TCP ports 64294, 64295 and 64297 will be allowed from this IP only. Multiple IPs or CIDR blocks can be specified in the format: `["127.0.0.1/32", "192.168.0.0/24"]` * `ec2_vpc_id` @@ -52,7 +52,7 @@ This will be used to configure credentials for the T-Pot Kibana interface. Refer The [`terraform init`](https://www.terraform.io/docs/commands/init.html) command is used to initialize a working directory containing Terraform configuration files. ``` -$ cd ec2 +$ cd aws $ terraform init Initializing the backend... diff --git a/cloud/terraform/ec2/main.tf b/cloud/terraform/aws/main.tf similarity index 100% rename from cloud/terraform/ec2/main.tf rename to cloud/terraform/aws/main.tf diff --git a/cloud/terraform/ec2/outputs.tf b/cloud/terraform/aws/outputs.tf similarity index 100% rename from cloud/terraform/ec2/outputs.tf rename to cloud/terraform/aws/outputs.tf diff --git a/cloud/terraform/ec2/variables.tf b/cloud/terraform/aws/variables.tf similarity index 100% rename from cloud/terraform/ec2/variables.tf rename to cloud/terraform/aws/variables.tf diff --git a/cloud/terraform/ec2/versions.tf b/cloud/terraform/aws/versions.tf similarity index 100% rename from cloud/terraform/ec2/versions.tf rename to cloud/terraform/aws/versions.tf