This is an automated email from the ASF dual-hosted git repository.
dahn pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/cloudstack-terraform-provider.git
The following commit(s) were added to refs/heads/main by this push:
new d49703e add acl_id missing required parameter for the example usage
of private gateways (#180)
d49703e is described below
commit d49703e3539f7af2f538ec45a3af29345bf4c3a2
Author: Bernardo De Marco Gonçalves <[email protected]>
AuthorDate: Mon Sep 15 03:53:34 2025 -0300
add acl_id missing required parameter for the example usage of private
gateways (#180)
---
website/docs/r/private_gateway.html.markdown | 1 +
1 file changed, 1 insertion(+)
diff --git a/website/docs/r/private_gateway.html.markdown
b/website/docs/r/private_gateway.html.markdown
index cd05a5e..b5a3243 100644
--- a/website/docs/r/private_gateway.html.markdown
+++ b/website/docs/r/private_gateway.html.markdown
@@ -21,6 +21,7 @@ resource "cloudstack_private_gateway" "default" {
netmask = "255.255.255.252"
vlan = "200"
vpc_id = "76f6e8dc-07e3-4971-b2a2-8831b0cc4cb4"
+ acl_id = "cf4f1dad-aade-4ccd-866c-0a2166e5be3d"
}
```