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.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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