terraform-provider-google/website/docs/r/runtimeconfig_config.html.markdown
Joe Selman bcaa151cfa Add support for Google RuntimeConfig (#315)
* Vendor runtimeconfig

* Add support for RuntimeConfig config and variable resources

This allows users to create/manage Google RuntimeConfig resources and
variables. More information here:
https://cloud.google.com/deployment-manager/runtime-configurator/

Closes #236

* Remove typo

* Use top-level declaration rather than init()

* Cleanup testing-related code by using ConflictsWith

Also adds better comments around how update works
2017-08-14 14:16:11 -07:00

1.0 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 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.