NAME
    gcloud beta iap tcp dest-groups create - create the IAP TCP Destination
        Group resource

SYNOPSIS
    gcloud beta iap tcp dest-groups create GROUP_NAME --region=REGION
        [--fqdn-list=FQDN_LIST] [--ip-range-list=IP_RANGE_LIST]
        [GCLOUD_WIDE_FLAG ...]

DESCRIPTION
    (BETA) Create the IAP TCP Destination Group resource.

EXAMPLES
    To create a DestGroup with name GROUP_NAME, in region REGION in the current
    project run:

        $ gcloud beta iap tcp dest-groups create GROUP_NAME --region=REGION

    To create a DestGroup with name GROUP_NAME, in region REGION with ip ranges
    CIDR1, CIDR2 in the current project run:

        $ gcloud beta iap tcp dest-groups create GROUP_NAME \
            --region=REGION --ip-range-list=CIDR1,CIDR2

    To create a DestGroup with name GROUP_NAME, in region REGION with fqdns
    FQDN1, FQDN2 in the current project run:

        $ gcloud beta iap tcp dest-groups create GROUP_NAME \
            --region=REGION --fqdn-list=FQDN1,FQDN2

    To create a DestGroup with name GROUP_NAME, in region REGION with fqdns
    FQDN1, FQDN2 and ip ranges CIDR1,CIDR2 in the project PROJECT_ID run:

        $ gcloud beta iap tcp dest-groups create GROUP_NAME \
            --region=REGION --fqdn-list=FQDN1,FQDN2 \
            --ip-range-list=CIDR1,CIDR2 --project=PROJECT_ID

    GROUP_NAME can only contain lower-case letters (a-z) and dashes (-).

POSITIONAL ARGUMENTS
     GROUP_NAME
        Name of the Destination Group.

REQUIRED FLAGS
     --region=REGION
        Region of the Destination Group.

OPTIONAL FLAGS
     --fqdn-list=FQDN_LIST
        List of FQDNs in the Destination Group.

     --ip-range-list=IP_RANGE_LIST
        List of ip-ranges in the Destination Group.

GCLOUD WIDE FLAGS
    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.

NOTES
    This command is currently in beta and might change without notice. These
    variants are also available:

        $ gcloud iap tcp dest-groups create

        $ gcloud alpha iap tcp dest-groups create

