diff --git a/test/unit-test/providers.tf b/test/unit-test/providers.tf index 5e63b8b8..555040c5 100644 --- a/test/unit-test/providers.tf +++ b/test/unit-test/providers.tf @@ -8,16 +8,14 @@ provider "aws" { # AWS provider for the testing-ci user (testing-test account), to get things from there if required provider "aws" { - alias = "testing-ci-user" - region = "eu-west-2" - skip_get_ec2_platforms = true + alias = "testing-ci-user" + region = "eu-west-2" } # AWS provider for core-vpc-, to share VPCs into this account provider "aws" { - alias = "core-vpc" - region = "eu-west-2" - skip_get_ec2_platforms = true + alias = "core-vpc" + region = "eu-west-2" assume_role { role_arn = "arn:aws:iam::${local.environment_management.account_ids[local.provider_name]}:role/member-delegation-${local.vpc_name}-${local.environment}" } @@ -25,9 +23,8 @@ provider "aws" { # AWS provider for network services to enable dns entries for certificate validation to be created provider "aws" { - alias = "core-network-services" - region = "eu-west-2" - skip_get_ec2_platforms = true + alias = "core-network-services" + region = "eu-west-2" assume_role { role_arn = "arn:aws:iam::${local.environment_management.account_ids["core-network-services-production"]}:role/modify-dns-records" }