mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-10 03:16:46 +00:00
104 lines
3.5 KiB
Text
104 lines
3.5 KiB
Text
NAME
|
|
gcloud alpha compute url-maps config export - export the configuration for
|
|
a URL map
|
|
|
|
SYNOPSIS
|
|
gcloud alpha compute url-maps config export
|
|
([[URL_MAP] --global | --region=REGION] --all)
|
|
[--path=PATH; default="-"] [--resource-format=RESOURCE_FORMAT]
|
|
[GCLOUD_WIDE_FLAG ...]
|
|
|
|
DESCRIPTION
|
|
(ALPHA) gcloud alpha compute url-maps config export exports the
|
|
configuration for a URL map.
|
|
|
|
Url map configurations can be exported in Kubernetes Resource Model (krm)
|
|
or Terraform HCL formats. The default format is krm.
|
|
|
|
Specifying --all allows you to export the configurations for all URL maps
|
|
within the project.
|
|
|
|
Specifying --path allows you to export the configuration(s) to a local
|
|
directory.
|
|
|
|
EXAMPLES
|
|
To export the configuration for a URL map, run:
|
|
|
|
$ gcloud alpha compute url-maps config export my-url-map
|
|
|
|
To export the configuration for a URL map to a file, run:
|
|
|
|
$ gcloud alpha compute url-maps config export my-url-map \
|
|
--path=/path/to/dir/
|
|
|
|
To export the configuration for a URL map in Terraform HCL format, run:
|
|
|
|
$ gcloud alpha compute url-maps config export my-url-map \
|
|
--resource-format=terraform
|
|
|
|
To export the configurations for all URL maps within a project, run:
|
|
|
|
$ gcloud alpha compute url-maps config export --all
|
|
|
|
POSITIONAL ARGUMENTS
|
|
Exactly one of these must be specified:
|
|
|
|
[URL_MAP]
|
|
Name of the URL map to export.
|
|
|
|
At most one of these can be specified:
|
|
|
|
--global
|
|
If set, the URL map is global.
|
|
|
|
--region=REGION
|
|
Region of the URL map to export. If not specified, you might be
|
|
prompted to select a region (interactive mode only).
|
|
|
|
To avoid prompting when this flag is omitted, you can set the
|
|
compute/region property:
|
|
|
|
$ gcloud config set compute/region REGION
|
|
|
|
A list of regions can be fetched by running:
|
|
|
|
$ gcloud compute regions list
|
|
|
|
To unset the property, run:
|
|
|
|
$ gcloud config unset compute/region
|
|
|
|
Alternatively, the region can be stored in the environment variable
|
|
CLOUDSDK_COMPUTE_REGION.
|
|
|
|
--all
|
|
Retrieve all resources within the project. If --path is specified and
|
|
is a valid directory, resources will be output as individual files
|
|
based on resource name and scope. If --path is not specified,
|
|
resources will be streamed to stdout.
|
|
|
|
FLAGS
|
|
--path=PATH; default="-"
|
|
Path of the directory or file to output configuration(s). To output
|
|
configurations to stdout, specify "--path=-".
|
|
|
|
--resource-format=RESOURCE_FORMAT
|
|
Format of the configuration to export. Available configuration formats
|
|
are Kubernetes Resource Model YAML (krm) or Terraform HCL (terraform).
|
|
Command defaults to "krm". RESOURCE_FORMAT must be one of: krm,
|
|
terraform.
|
|
|
|
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.
|
|
|