run terraform fmt
This commit is contained in:
parent
f6046c4f96
commit
9bb945a302
@ -28,7 +28,8 @@ resource "hcloud_server" "agents" {
|
||||
|
||||
connection {
|
||||
user = "root"
|
||||
private_key = file(var.private_key)
|
||||
private_key = var.private_key == null ? null : file(var.private_key)
|
||||
agent_identity = var.private_key == null ? file(var.public_key) : null
|
||||
host = self.ipv4_address
|
||||
}
|
||||
}
|
||||
@ -39,7 +40,8 @@ resource "hcloud_server" "agents" {
|
||||
|
||||
connection {
|
||||
user = "root"
|
||||
private_key = file(var.private_key)
|
||||
private_key = var.private_key == null ? null : file(var.private_key)
|
||||
agent_identity = var.private_key == null ? file(var.public_key) : null
|
||||
host = self.ipv4_address
|
||||
}
|
||||
}
|
||||
|
@ -24,7 +24,8 @@ resource "hcloud_server" "first_control_plane" {
|
||||
|
||||
connection {
|
||||
user = "root"
|
||||
private_key = file(var.private_key)
|
||||
private_key = var.private_key == null ? null : file(var.private_key)
|
||||
agent_identity = var.private_key == null ? file(var.public_key) : null
|
||||
host = self.ipv4_address
|
||||
}
|
||||
}
|
||||
@ -35,7 +36,8 @@ resource "hcloud_server" "first_control_plane" {
|
||||
|
||||
connection {
|
||||
user = "root"
|
||||
private_key = file(var.private_key)
|
||||
private_key = var.private_key == null ? null : file(var.private_key)
|
||||
agent_identity = var.private_key == null ? file(var.public_key) : null
|
||||
host = self.ipv4_address
|
||||
}
|
||||
}
|
||||
|
@ -27,7 +27,8 @@ resource "hcloud_server" "control_planes" {
|
||||
|
||||
connection {
|
||||
user = "root"
|
||||
private_key = file(var.private_key)
|
||||
private_key = var.private_key == null ? null : file(var.private_key)
|
||||
agent_identity = var.private_key == null ? file(var.public_key) : null
|
||||
host = self.ipv4_address
|
||||
}
|
||||
}
|
||||
@ -38,7 +39,8 @@ resource "hcloud_server" "control_planes" {
|
||||
|
||||
connection {
|
||||
user = "root"
|
||||
private_key = file(var.private_key)
|
||||
private_key = var.private_key == null ? null : file(var.private_key)
|
||||
agent_identity = var.private_key == null ? file(var.public_key) : null
|
||||
host = self.ipv4_address
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user