mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-16 20:36:39 +00:00
69 lines
2.5 KiB
Text
69 lines
2.5 KiB
Text
NAME
|
|
gcloud alpha services peered-dns-domains create - create a peered DNS
|
|
domain for a private service connection
|
|
|
|
SYNOPSIS
|
|
gcloud alpha services peered-dns-domains create NAME
|
|
--dns-suffix=DNS_SUFFIX --network=NETWORK [--async]
|
|
[--service=SERVICE; default="servicenetworking.googleapis.com"]
|
|
[GCLOUD_WIDE_FLAG ...]
|
|
|
|
DESCRIPTION
|
|
(ALPHA) This command creates a peered DNS domain for a private service
|
|
connection which sends requests for records in a given namespace
|
|
originating in the service producer VPC network to the consumer VPC network
|
|
to be resolved.
|
|
|
|
EXAMPLES
|
|
To create a peered DNS domain called example-com which forwards DNS
|
|
requests for the domain suffix example.com. for a private service
|
|
connection between service peering-service and the consumer network
|
|
my-network in the current project, run:
|
|
|
|
$ gcloud alpha services peered-dns-domains create example-com \
|
|
--network=my-network --service=peering-service \
|
|
--dns-suffix=example.com.
|
|
|
|
To run the same command asynchronously (non-blocking), run:
|
|
|
|
$ gcloud alpha services peered-dns-domains create example-com \
|
|
--network=my-network --service=peering-service \
|
|
--dns-suffix=example.com. --async
|
|
|
|
POSITIONAL ARGUMENTS
|
|
NAME
|
|
The name of the peered DNS domain to create.
|
|
|
|
REQUIRED FLAGS
|
|
--dns-suffix=DNS_SUFFIX
|
|
The DNS domain name suffix of the peered DNS domain.
|
|
|
|
--network=NETWORK
|
|
The network in the consumer project peered with the service.
|
|
|
|
OPTIONAL FLAGS
|
|
--async
|
|
Return immediately, without waiting for the operation in progress to
|
|
complete.
|
|
|
|
--service=SERVICE; default="servicenetworking.googleapis.com"
|
|
The name of the service to create a peered DNS domain for.
|
|
|
|
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 alpha and might change without notice. If this
|
|
command fails with API permission errors despite specifying the correct
|
|
project, you might be trying to access an API with an invitation-only early
|
|
access allowlist. These variants are also available:
|
|
|
|
$ gcloud services peered-dns-domains create
|
|
|
|
$ gcloud beta services peered-dns-domains create
|
|
|