File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -74,9 +74,11 @@ module "my_instance" {
74
74
75
75
| Name | Description |
76
76
| ------| -------------|
77
+ | <a name =" output_id " ></a > [ id] ( #output_id ) | ID of the instance. |
77
78
| <a name =" output_ip4 " ></a > [ ip4] ( #output_ip4 ) | IPv4 address of the intance. |
78
79
| <a name =" output_ip6 " ></a > [ ip6] ( #output_ip6 ) | IPv6 address of the instance. |
79
80
| <a name =" output_name " ></a > [ name] ( #output_name ) | Name of the instance. |
81
+ | <a name =" output_root_volume " ></a > [ root_volume] ( #output_root_volume ) | ID of the root volume. |
80
82
<!-- END_TF_DOCS -->
81
83
82
84
## Authors
Original file line number Diff line number Diff line change @@ -12,3 +12,13 @@ output "name" {
12
12
description = " Name of the instance."
13
13
value = scaleway_instance_server. this . name
14
14
}
15
+
16
+ output "id" {
17
+ description = " ID of the instance."
18
+ value = scaleway_instance_server. this . id
19
+ }
20
+
21
+ output "root_volume" {
22
+ description = " ID of the root volume."
23
+ value = scaleway_instance_server. this . root_volume
24
+ }
You can’t perform that action at this time.
0 commit comments