Skip to content

Commit

Permalink
INTMDB-384 Fix PrivateLink test flakiness (#895)
Browse files Browse the repository at this point in the history
* Using different endpointID values for the endpoint service adl tests

* Removed parallelization with private link endpoint test which had overlap with others

* Reverted changes to the endpointID
  • Loading branch information
evertsd committed Nov 30, 2022
1 parent 06baa82 commit 9247857
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ func testAccCheckMongoDBAtlasPrivateLinkEndpointServiceADLDestroy(state *terrafo
func testAccMongoDBAtlasPrivateLinkEndpointServiceADLConfig(projectID, endpointID, comment string) string {
return fmt.Sprintf(`
resource "mongodbatlas_privatelink_endpoint_service_adl" "test" {
project_id = "%[1]s"
endpoint_id = "%[2]s"
comment = "%[3]s"
type = "DATA_LAKE"
provider_name = "AWS"
project_id = "%[1]s"
endpoint_id = "%[2]s"
comment = "%[3]s"
type = "DATA_LAKE"
provider_name = "AWS"
}
`, projectID, endpointID, comment)
}
Expand Down

0 comments on commit 9247857

Please sign in to comment.