Automation and setup for sites I own.
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.
 
 
 
 

23 line
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. }