Automation and setup for sites I own.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

23 řádky
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. }