kiranchavala commented on code in PR #197: URL: https://github.com/apache/cloudstack-terraform-provider/pull/197#discussion_r2354563938
########## website/docs/r/limits.html.markdown: ########## @@ -0,0 +1,88 @@ +--- +layout: "cloudstack" +page_title: "CloudStack: cloudstack_limits" +sidebar_current: "docs-cloudstack-limits" +description: |- + Provides a CloudStack limits resource. +--- + +# cloudstack_limits + +Provides a CloudStack limits resource. This can be used to manage resource limits for accounts, domains, and projects within CloudStack. + +## Example Usage + +```hcl +# Set instance limit for the root domain +resource "cloudstack_limits" "instance_limit" { + type = "instance" + max = 20 +} + +# Set volume limit for a specific account in a domain +resource "cloudstack_limits" "volume_limit" { + type = "volume" + max = 50 + account = "acct1" + domainid = "domain-uuid" Review Comment: domain_id -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org