Compare commits
4 Commits
2022-06-01
...
2022-07-03
Author | SHA1 | Date | |
---|---|---|---|
502a17f145 | |||
5746be68e4 | |||
21bacbe714 | |||
883538a97a |
@@ -1,11 +1,12 @@
|
|||||||
resource "linode_instance" "this" {
|
resource "linode_instance" "this" {
|
||||||
authorized_keys = var.authorized_keys
|
authorized_keys = var.authorized_keys
|
||||||
backups_enabled = true
|
backups_enabled = var.backups_enabled
|
||||||
booted = true
|
booted = var.booted
|
||||||
label = "${var.host_name}.${var.domain_name}"
|
label = "${var.host_name}.${var.domain_name}"
|
||||||
image = var.image
|
image = var.image
|
||||||
private_ip = true
|
private_ip = var.private_ip
|
||||||
tags = var.tags
|
tags = var.tags
|
||||||
type = var.type
|
type = var.type
|
||||||
region = var.region
|
region = var.region
|
||||||
|
watchdog_enabled = var.watchdog_enabled
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +0,0 @@
|
|||||||
resource "linode_rdns" "this_ipv4" {
|
|
||||||
address = linode_instance.this.ip_address
|
|
||||||
depends_on = [
|
|
||||||
linode_domain_record.this_ipv4,
|
|
||||||
]
|
|
||||||
rdns = "${var.host_name}.${var.domain_name}"
|
|
||||||
wait_for_available = false
|
|
||||||
}
|
|
@@ -1,8 +0,0 @@
|
|||||||
resource "linode_rdns" "this_ipv6" {
|
|
||||||
address = element(split("/", linode_instance.this.ipv6), 0)
|
|
||||||
depends_on = [
|
|
||||||
linode_domain_record.this_ipv6,
|
|
||||||
]
|
|
||||||
rdns = "${var.host_name}.${var.domain_name}"
|
|
||||||
wait_for_available = false
|
|
||||||
}
|
|
@@ -2,8 +2,8 @@ terraform {
|
|||||||
required_providers {
|
required_providers {
|
||||||
linode = {
|
linode = {
|
||||||
source = "linode/linode"
|
source = "linode/linode"
|
||||||
version = ">= 1.27.2"
|
version = ">= 1.28.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
required_version = ">= 1.2.1"
|
required_version = ">= 1.2.4"
|
||||||
}
|
}
|
||||||
|
4
variable.backups_enabled.tf
Normal file
4
variable.backups_enabled.tf
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
variable "backups_enabled" {
|
||||||
|
default = true
|
||||||
|
type = bool
|
||||||
|
}
|
4
variable.booted.tf
Normal file
4
variable.booted.tf
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
variable "booted" {
|
||||||
|
default = true
|
||||||
|
type = bool
|
||||||
|
}
|
4
variable.private_ip.tf
Normal file
4
variable.private_ip.tf
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
variable "private_ip" {
|
||||||
|
default = true
|
||||||
|
type = bool
|
||||||
|
}
|
4
variable.watchdog_enabled.tf
Normal file
4
variable.watchdog_enabled.tf
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
variable "watchdog_enabled" {
|
||||||
|
default = true
|
||||||
|
type = bool
|
||||||
|
}
|
Reference in New Issue
Block a user