terraform-provider-google/website/docs/r/runtimeconfig_config.html.markdown
2018-09-14 15:17:10 +02:00

1.4 KiB

layout page_title sidebar_current description
google Google: google_runtimeconfig_config docs-google-runtimeconfig-config Manages a RuntimeConfig resource in Google Cloud.

google_runtimeconfig_config

Manages a RuntimeConfig resource in Google Cloud. For more information, see the official documentation, or the JSON API.

Example Usage

Example creating a RuntimeConfig resource.

resource "google_runtimeconfig_config" "my-runtime-config" {
 	name = "my-service-runtime-config"
 	description = "Runtime configuration values for my service"
}

Argument Reference

The following arguments are supported:

  • name - (Required) The name of the runtime config.

  • project - (Optional) The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

  • description - (Optional) The description to associate with the runtime config.

Import

Runtime Configs can be imported using the name or full config name, e.g.

$ terraform import google_runtimeconfig_config.myconfig myconfig
$ terraform import google_runtimeconfig_config.myconfig projects/my-gcp-project/configs/myconfig

When importing using only the name, the provider project must be set.