gcloud compute firewall-policies create - create a Compute Engine organization firewall policy
gcloud compute firewall-policies create --short-name=SHORT_NAME (--folder=FOLDER | --organization=ORGANIZATION) [--description=DESCRIPTION] [GCLOUD_WIDE_FLAG ...]
gcloud compute firewall-policies create is used to create organization firewall policies. An organization firewall policy is a set of rules that controls access to various resources.
To create an organization firewall policy under folder with ID ``123456789", run:
$ gcloud compute firewall-policies create --short-name=my-policy \ --folder=123456789
- --short-name=SHORT_NAME
A textual name of the firewall policy. The name must be 1-63 characters long, and comply with RFC 1035.
- Exactly one of these must be specified:
- --folder=FOLDER
Folder in which the organization firewall policy is to be created.
- --organization=ORGANIZATION
Organization in which the organization firewall policy is to be created.
- --description=DESCRIPTION
An optional, textual description for the organization security policy.
These flags are available to all commands: --access-token-file, --account, --billing-project, --configuration, --flags-file, --flatten, --format, --help, --impersonate-service-account, --log-http, --project, --quiet, --trace-token, --user-output-enabled, --verbosity.
Run $ gcloud help for details.
These variants are also available:
$ gcloud alpha compute firewall-policies create
$ gcloud beta compute firewall-policies create