Skip to content

Commit

Permalink
Minor fix to test data for access_group
Browse files Browse the repository at this point in the history
  • Loading branch information
musa-cf committed Nov 20, 2024
1 parent 09f0341 commit 59d48bf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ resource "cloudflare_zero_trust_access_group" "%[1]s" {
name = "%[1]s"

include = [{
common_name = "common"
common_name = { common_name = "common" }
}]
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@ resource "cloudflare_zero_trust_access_group" "%[1]s" {
account_id = "%[2]s"
name = "%[1]s"

include = [{
email = { email = "%[3]s" }
email_domain = { domain = "example.com" }
common_names = ["common", "name"]
}]
include = [
{
email = { email = "%[3]s" }
email_domain = { domain = "example.com" }
common_name = { common_name = "common" }
},
{
common_name = { common_name = "name" }
}
]

require = [{
email = { email = "%[3]s" }
Expand Down

0 comments on commit 59d48bf

Please sign in to comment.