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.
 
 
 
 

23 righe
477 B

  1. # entry point for terraform configuration
  2. variable "ssh_pub_key" {
  3. type = string
  4. }
  5. variable "root_password" {
  6. type = string
  7. }
  8. resource "linode_instance" "prod" {
  9. image = "linode/alpine3.11"
  10. label = "vps"
  11. group = "terraform"
  12. region = "us-central"
  13. type = "g6-nanode-1"
  14. authorized_keys = [var.ssh_pub_key]
  15. root_pass = var.root_password
  16. }
  17. output "ipv4" {
  18. value = "${linode_instance.prod.ip_address}"
  19. }