Documentation Index
Fetch the complete documentation index at: https://sitectl.libops.io/llms.txt
Use this file to discover all available pages before exploring further.
Members, firewall rules, and secrets can be attached to an organization, project, or site. Pass exactly one scope flag: --organization-id, --project-id, or --site-id.
Members
Add and list members for a scope:
sitectl libops create members \
--site-id "$SITE_ID" \
--account-id "$ACCOUNT_ID" \
--role developer
sitectl libops list members --site-id "$SITE_ID"
Firewall
Create and list firewall rules:
sitectl libops create firewall \
--site-id "$SITE_ID" \
--name office \
--cidr 203.0.113.10/32 \
--type FIREWALL_RULE_TYPE_HTTPS_ALLOWED
sitectl libops list firewall --site-id "$SITE_ID"
Secrets
Create and list secrets:
sitectl libops create secrets \
--site-id "$SITE_ID" \
--name SMTP_PASSWORD \
--value "$SMTP_PASSWORD"
sitectl libops list secrets --site-id "$SITE_ID"
Use project or organization scope for values that should apply more broadly than a single site.