-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tf
More file actions
66 lines (56 loc) · 1.34 KB
/
main.tf
File metadata and controls
66 lines (56 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
provider "null" {
version = ">= 2.1.0"
}
provider "local" {
version = ">= 1.4.0"
}
resource "local_file" "install_script" {
content = <<EOF
#!/bin/bash
curl -L https://linuxpatch.com/install.sh -o /tmp/install.sh
chmod +x /tmp/install.sh
EOF
filename = "/tmp/install_script.sh"
}
resource "null_resource" "run_install_script" {
depends_on = [local_file.install_script]
provisioner "remote-exec" {
connection {
type = "ssh"
user = "root"
host = var.target_host
private_key = file("<path_to_your_private_key>")
}
inline = [
"bash /tmp/install_script.sh",
"LP_KEY=${var.lp_key} /tmp/install.sh",
]
}
provisioner "remote-exec" {
when = destroy
connection {
type = "ssh"
user = "root"
host = var.target_host
private_key = file("<path_to_your_private_key>")
}
inline = [
"rm -f /tmp/install.sh /tmp/install_script.sh",
]
}
}
resource "null_resource" "ensure_service" {
depends_on = [null_resource.run_install_script]
provisioner "remote-exec" {
connection {
type = "ssh"
user = "root"
host = var.target_host
private_key = file("<path_to_your_private_key>")
}
inline = [
"systemctl enable linuxpatch-agent",
"systemctl start linuxpatch-agent",
]
}
}