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

40 lines
1.0 KiB
Markdown

---
layout: "google"
page_title: "Google: google_runtimeconfig_config"
sidebar_current: "docs-google-runtimeconfig-config"
description: |-
Manages a RuntimeConfig resource in Google Cloud.
---
# google\_runtimeconfig\_config
Manages a RuntimeConfig resource in Google Cloud. For more information, see the
[official documentation](https://cloud.google.com/deployment-manager/runtime-configurator/),
or the
[JSON API](https://cloud.google.com/deployment-manager/runtime-configurator/reference/rest/).
## Example Usage
Example creating a RuntimeConfig resource.
```hcl
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.