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.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

26 líneas
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. }