Automation and setup for sites I own.
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- # entry point for terraform configuration
- variable "ssh_pub_key" {
- type = string
- }
-
- variable "root_password" {
- type = string
- }
-
- resource "linode_instance" "prod" {
- image = "linode/alpine3.11"
- label = "vps"
- group = "terraform"
- region = "us-central"
- type = "g6-nanode-1"
- authorized_keys = [var.ssh_pub_key]
- root_pass = var.root_password
- }
-
- output "ipv4" {
- value = "${linode_instance.prod.ip_address}"
- }
|