Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • master
  • my-working-branch
3 results

README.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    variables.tf 530 B
    variable "flavor" { default = "m1.large" }
    variable "image" { default = "Rocky 9.5 20241118" }
    
    variable "name" { default = "JenkinsServer" }
    
    variable "network" { default = "temp_network" }   # you need to change this
    
    variable "keypair" { default = "temp" } # you need to change this
    variable "pool" { default = "cscloud_private_floating" }
    variable "server_script" { default = "./serverJenkins.sh" }
    variable "security_description" { default = "Terraform security group" }
    variable "security_name" { default = "SecurityRule" }