This is a Terraform project to deploy DigitalOcean droplets for my LPI classes
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.

36 lines
390B

  1. variable "do_token" {}
  2. variable "count" {
  3. default = 11
  4. }
  5. variable "region" {
  6. default = "lon1"
  7. }
  8. variable "size" {
  9. default = "1gb"
  10. }
  11. variable "server_name" {
  12. type = "map"
  13. }
  14. variable "domain" {
  15. default = "example.com"
  16. }
  17. variable "images" {
  18. type = "map"
  19. }
  20. variable "ssh_keys" {
  21. type = "list"
  22. }
  23. variable "dns_server" {}
  24. variable "dns_key_name" {}
  25. variable "dns_key" {}