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.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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