Initial test version

This commit is contained in:
2022-05-06 15:16:16 -05:00
parent 830e33facb
commit 03bb0578a5
12 changed files with 121 additions and 18 deletions
+11
View File
@@ -0,0 +1,11 @@
resource "linode_instance" "this" {
authorized_keys = var.authorized_keys
backups_enabled = true
booted = true
label = "${var.host_name}.${var.domain_name}"
image = var.image
private_ip = true
tags = var.tags
type = var.type
region = var.region
}