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.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

26 строки
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. }