This is a Terraform based project for the deployment of Debian and CentOS servers, for the purposes of my LPI classes. Scaleway is used at the provider in this scenario.
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.

26 lines
300B

  1. variable "organization" {}
  2. variable "token" {}
  3. variable "count" {
  4. default = 11
  5. }
  6. variable "region" {
  7. default = "par1"
  8. }
  9. variable "type" {
  10. default = "START1-S"
  11. }
  12. variable "server_name" {
  13. type = "map"
  14. }
  15. variable "domain" {
  16. default = "example.com"
  17. }
  18. variable "images" {
  19. type = "map"
  20. }