Compare commits

...

1 Commits

Author SHA1 Message Date
Mike Holloway fb6940a0c7 modified: .gitignore 4 months ago
  1. 2
      .gitignore
  2. 22
      tofu/main.tf

2
.gitignore vendored

@ -1 +1,3 @@
.env
tofu/.terraform*
tofu/terraform.tfstate*

@ -0,0 +1,22 @@
terraform {
required_providers {
linode = {
source = "linode/linode"
version = "2.26.0"
}
}
}
provider linode {
# Configuration options
token = "b31ef21bb1649e7f580918305192733e84ba14aa5c4936723c89b26f5aae6012"
}
resource linode_instance "ci-cd" {
label = "ci-cd"
image = "linode/almalinux9"
region = "ca-central"
type = "g6-standard-2"
authorized_keys = ["ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeRI1w3uNny7KjK2UdlAnyoGdGgtOx4isSD52u5dr4QkkdLRMj42dLjgT0MK+QehlgaH2XzFPMDz+hZQ+66YeBSm+F4km/8F9XVyUzGl0scUA1p0pqeL3FiyM3Art4Bo71zuE3PvMjyI3pGMKQ3VDWVA0XdAjjSw4G+czJTxZLLBPGvzDT07WuWM4Evl6H21Gn7PB6CKNV0vuUZwGiCsjRbghml1L2kDtTXV1B6wQsniuhQigIVo6YXhMgge/2UCcmiyeEizdfaSstrQHEyxFMvlPUJyw4a3plAuPORDyZdAFF6OA7/wP5fVWoCu/CkbMIDjPifXGQOuhQU1qUVy7r m00t@miserver.lan"]
root_pass = "Entomb-Unce>tain-Garnish"
}
Loading…
Cancel
Save