Skip to content

Commit dbdd592

Browse files
committed
Update documentation
1 parent 19f01e8 commit dbdd592

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

docs/r/runtimeconfig_config.html.markdown

+12
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,15 @@ is not provided, the provider project is used.
3737

3838
* `description` - (Optional) The description to associate with the runtime
3939
config.
40+
41+
## Import
42+
43+
Runtime Configs can be imported using the `name` or full config name, e.g.
44+
45+
```
46+
$ terraform import google_runtimeconfig_config.myconfig myconfig
47+
```
48+
```
49+
$ terraform import google_runtimeconfig_config.myconfig projects/my-gcp-project/configs/myconfig
50+
```
51+
When importing using only the name, the provider project must be set.

docs/r/runtimeconfig_variable.html.markdown

+12
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,15 @@ exported:
7676
* `update_time` - (Computed) The timestamp in RFC3339 UTC "Zulu" format,
7777
accurate to nanoseconds, representing when the variable was last updated.
7878
Example: "2016-10-09T12:33:37.578138407Z".
79+
80+
## Import
81+
82+
Runtime Config Variables can be imported using the `name` or full variable name, e.g.
83+
84+
```
85+
$ terraform import google_runtimeconfig_variable.myvariable myconfig/myvariable
86+
```
87+
```
88+
$ terraform import google_runtimeconfig_variable.myvariable projects/my-gcp-project/configs/myconfig/variables/myvariable
89+
```
90+
When importing using only the name, the provider project must be set.

0 commit comments

Comments
 (0)