diff options
author | Christopher Baines <mail@cbaines.net> | 2018-06-03 13:06:30 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-06-03 14:09:13 +0100 |
commit | 93c1c6e5b76ed712f6c5107c6a124025279996d6 (patch) | |
tree | 9744ed6a454e8d5ba69657e4ad5fdd699b726b25 /test | |
parent | f74331a8e6d5b0ae9c2c73a36ba19730752269aa (diff) | |
download | govuk-mini-environment-admin-93c1c6e5b76ed712f6c5107c6a124025279996d6.tar govuk-mini-environment-admin-93c1c6e5b76ed712f6c5107c6a124025279996d6.tar.gz |
Change how the EFS File System is handled
For the AWS backend.
Bring it in to the Terraform configuration for the backend, where
previously only the id was known. Also, alter the provisioning so that
it can handle an empty EFS file system.
This reduces the amount of manual setup required for AWS.
Diffstat (limited to 'test')
-rw-r--r-- | test/controllers/backends/terraform_aws_controller_test.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/controllers/backends/terraform_aws_controller_test.rb b/test/controllers/backends/terraform_aws_controller_test.rb index be575f1..f98890f 100644 --- a/test/controllers/backends/terraform_aws_controller_test.rb +++ b/test/controllers/backends/terraform_aws_controller_test.rb @@ -17,7 +17,6 @@ class Backends::TerraformAwsControllerTest < ActionDispatch::IntegrationTest aws_access_key_id: 'test-access-key-id', aws_secret_access_key: 'test-secret-access-key', route_53_zone_id: 'test-route-53-zone-id', - efs_file_system_id: 'test-efs-file-system-id', vpc_id: 'test-vpc-id' } @@ -45,7 +44,6 @@ class Backends::TerraformAwsControllerTest < ActionDispatch::IntegrationTest aws_access_key_id: 'old-test-access-key-id', aws_secret_access_key: 'old-test-secret-access-key', route_53_zone_id: 'old-test-route-53-zone-id', - efs_file_system_id: 'test-efs-file-system-id', vpc_id: 'test-vpc-id' ) @@ -74,7 +72,6 @@ class Backends::TerraformAwsControllerTest < ActionDispatch::IntegrationTest aws_access_key_id: 'old-test-access-key-id', aws_secret_access_key: 'old-test-secret-access-key', route_53_zone_id: 'old-test-route-53-zone-id', - efs_file_system_id: 'test-efs-file-system-id', vpc_id: 'test-vpc-id' ) @@ -90,7 +87,6 @@ class Backends::TerraformAwsControllerTest < ActionDispatch::IntegrationTest aws_access_key_id: 'old-test-access-key-id', aws_secret_access_key: 'old-test-secret-access-key', route_53_zone_id: 'old-test-route-53-zone-id', - efs_file_system_id: 'test-efs-file-system-id', vpc_id: 'test-vpc-id' ) |