You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
566 B

terraform {
cloud {
organization = "kejadlen"
workspaces {
name = "boxen"
}
}
required_providers {
linode = {
source = "linode/linode"
version = "1.29.4"
}
}
}
variable "soa_email" {
type = string
nullable = false
}
data "linode_instances" "ramble-hard" {
filter {
name = "label"
values = ["ramble-hard"]
}
}
locals {
ramble-hard = data.linode_instances.ramble-hard.instances.0
}
resource "linode_domain" "kejadlen-dev" {
type = "master"
domain = "kejadlen.dev"
soa_email = var.soa_email
}