10 lines
200 B
Terraform
10 lines
200 B
Terraform
|
|
output "ipv4_address" {
|
||
|
|
description = "Server public IPv4"
|
||
|
|
value = hcloud_server.this.ipv4_address
|
||
|
|
}
|
||
|
|
|
||
|
|
output "name" {
|
||
|
|
description = "Server name"
|
||
|
|
value = hcloud_server.this.name
|
||
|
|
}
|