Skip to content

Commit

Permalink
remove certificate association test
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbednarz authored Sep 4, 2024
1 parent 0851644 commit deeaf43
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ func TestAccCloudflareTeamsAccounts_ConfigurationBasic(t *testing.T) {
Config: testAccCloudflareTeamsAccountBasic(rnd, accountID),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(name, consts.AccountIDSchemaKey, accountID),
resource.TestCheckResourceAttr(name, "certificate.id", "fake-id"),
resource.TestCheckResourceAttr(name, "tls_decrypt_enabled", "true"),
resource.TestCheckResourceAttr(name, "protocol_detection_enabled", "true"),
resource.TestCheckResourceAttr(name, "activity_log_enabled", "true"),
Expand Down Expand Up @@ -103,7 +102,7 @@ resource "cloudflare_zero_trust_gateway_settings" "%[1]s" {
fail_closed = true
notification_settings {
enabled = true
message = "msg"
message = "msg"
support_url = "https://hello.com/"
}
}
Expand Down Expand Up @@ -140,9 +139,6 @@ resource "cloudflare_zero_trust_gateway_settings" "%[1]s" {
extended_email_matching {
enabled = true
}
certificate {
id = "fake-id"
}
}
`, rnd, accountID)
}

0 comments on commit deeaf43

Please sign in to comment.