Skip to content

Commit

Permalink
make docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbednarz committed Jun 6, 2024
1 parent a644f2a commit 94bc731
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions docs/resources/teams_account.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ resource "cloudflare_teams_account" "example" {
}
proxy {
tcp = true
udp = true
root_ca = true
tcp = true
udp = true
root_ca = true
virtual_ip = false
}
url_browser_isolation_enabled = true
Expand Down Expand Up @@ -246,6 +247,7 @@ Required:
- `root_ca` (Boolean) Whether root ca is enabled account wide for ZT clients.
- `tcp` (Boolean) Whether gateway proxy is enabled on gateway devices for TCP traffic.
- `udp` (Boolean) Whether gateway proxy is enabled on gateway devices for UDP traffic.
- `virtual_ip` (Boolean) Whether virtual IP (CGNAT) is enabled account wide and will override existing local interface IP for ZT clients.


<a id="nestedblock--ssh_session_log"></a>
Expand Down
6 changes: 3 additions & 3 deletions examples/resources/cloudflare_teams_account/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ resource "cloudflare_teams_account" "example" {
}

proxy {
tcp = true
udp = true
root_ca = true
tcp = true
udp = true
root_ca = true
virtual_ip = false
}

Expand Down
2 changes: 1 addition & 1 deletion internal/sdkv2provider/schema_cloudflare_teams_accounts.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ var proxySchema = map[string]*schema.Schema{
"virtual_ip": {
Type: schema.TypeBool,
Required: true,
Description: "Whether virtual ip (CGNAT) is enabled account wide and will override existing local interface IP for ZT clients.",
Description: "Whether virtual IP (CGNAT) is enabled account wide and will override existing local interface IP for ZT clients.",
},
}

Expand Down

0 comments on commit 94bc731

Please sign in to comment.