This is an automated email from the ASF dual-hosted git repository.
kiranchavala 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 f79a66b added doc to cks and acl rule (#229)
f79a66b is described below
commit f79a66ba6b982d38d5b84f16c0b92f47404e79c5
Author: kiranchavala <[email protected]>
AuthorDate: Tue Sep 23 18:30:16 2025 +0530
added doc to cks and acl rule (#229)
---
website/docs/r/kubernetes_cluster.html.markdown | 3 +++
website/docs/r/network_acl_rule.html.markdown | 15 +++++++++++++++
2 files changed, 18 insertions(+)
diff --git a/website/docs/r/kubernetes_cluster.html.markdown
b/website/docs/r/kubernetes_cluster.html.markdown
index 986f2eb..8bb61c8 100644
--- a/website/docs/r/kubernetes_cluster.html.markdown
+++ b/website/docs/r/kubernetes_cluster.html.markdown
@@ -52,6 +52,9 @@ The following arguments are supported:
* `state` - (Optional) The state of the Kubernetes cluster. Defaults to
`"Running"`.
* `project` - (Optional) The project to assign the Kubernetes cluster to.
* `noderootdisksize` - (Optional) root disk size in GB for each node.
+* `docker_registry_url` - (Optional) URL for the docker image private registry
+* `docker_registry_username` - (Optional) password for the docker image
private registry
+* `docker_registry_password"` - (Optional) user name for the docker image
private registry
## Attributes Reference
diff --git a/website/docs/r/network_acl_rule.html.markdown
b/website/docs/r/network_acl_rule.html.markdown
index 854b0fe..dec19ea 100644
--- a/website/docs/r/network_acl_rule.html.markdown
+++ b/website/docs/r/network_acl_rule.html.markdown
@@ -77,3 +77,18 @@ The `rule` block supports:
The following attributes are exported:
* `id` - The ACL ID for which the rules are created.
+
+## Import
+
+Network ACL Rules can be imported; use `<NETWORK ACL Rule ID>` as the import
ID. For
+example:
+
+```shell
+terraform import cloudstack_network_acl_rule.default
e8b5982a-1b50-4ea9-9920-6ea2290c7359
+```
+
+When importing into a project you need to prefix the import ID with the
project name:
+
+```shell
+terraform import cloudstack_network_acl_rule.default
my-project/e8b5982a-1b50-4ea9-9920-6ea2290c7359
+```
\ No newline at end of file