Update documentation

This commit is contained in:
Mikael Gibert 2018-09-14 15:17:10 +02:00
parent 1acfc5484a
commit 25e1610417
2 changed files with 24 additions and 0 deletions

View File

@ -37,3 +37,15 @@ 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.

View File

@ -76,3 +76,15 @@ exported:
* `update_time` - (Computed) The timestamp in RFC3339 UTC "Zulu" format,
accurate to nanoseconds, representing when the variable was last updated.
Example: "2016-10-09T12:33:37.578138407Z".
## Import
Runtime Config Variables can be imported using the `name` or full variable name, e.g.
```
$ terraform import google_runtimeconfig_variable.myvariable myconfig/myvariable
```
```
$ terraform import google_runtimeconfig_variable.myvariable projects/my-gcp-project/configs/myconfig/variables/myvariable
```
When importing using only the name, the provider project must be set.