Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • 44bda1b326c70ef952756865d7a57128cad42023
  • master default protected
  • paulos-#7636-expose-read-default-false
  • devel
  • paulos-bugfix-ra-opensslregistry-mode-fix
  • paulos-bugfix-ra-openssl-tempfile-write
  • valachp-ansible-fixes-server
  • hruska-feature-clients-api
  • malostik-#5066-deduplicate-idea-ids
  • warden-postgresql-port
  • hruska-feature-#6799-filter-keys
  • hruska-feature-5066-duplicateIdeaID
  • warden-client-3.0-beta3
  • warden-server-3.0-beta3
  • warden-client-2.2-final
  • warden-server-2.2-final
  • warden-client-3.0-beta2
  • warden-server-3.0-beta2
  • warden-client-2.2
  • warden-server-2.2-patch3
  • warden-client-3.0-beta1
  • warden-server-3.0-beta1
  • warden-server-2.2-patch1
  • warden-client-3.0-beta0
  • warden-server-3.0-beta0
  • warden-server-2.2
  • warden-server-2.1-patch1
  • warden-client-2.1
  • warden-server-2.1
  • warden-server-2.1-beta6
  • warden-server-2.1-beta5
  • warden-server-2.1-beta4
32 results

jquery.js

Blame
  • Forked from 713 / Warden / Warden
    Source project has a limited visibility.
    variables.tf 1.78 KiB
    variable "type" {
    	description = "Which software to setup"
    	default = "hadoop"
    }
    
    variable "n" {
    	description = "Number of instances"
    	default = 2
    }
    
    variable "master_hostname" {
    	description = "Master hostname"
    	default = "master"
    }
    
    variable "node_hostname" {
    	description = "Node hostnames prefix"
    	default = "node"
    }
    
    variable "domain" {
    	description = "Local domain name"
    	default = "terra"
    }
    
    variable "flavor" {
    	description = "Machine sizing flavor"
    	default = "standard.medium"
    }
    
    variable "image" {
    	description = "Image name"
    	default = "debian-9-x86_64"
    }
    
    variable "image_user" {
    	description = "SSH user"
    	default = "debian"
    }
    
    variable "local_network" {
    	description = "Local network name"
    	default = "auto_allocated_network"
    }
    
    variable "public_network" {
    	description = "Public network name"
    	default = "public-muni-147-251-124-GROUP"
    	# default = "public-cesnet-78-128-250-PERSONAL"
    }
    
    variable "security_admin_cidr" {
    	description = "Admin networks (ssh only)"
    	type = set(string)
    	default = []
    }
    
    variable "security_trusted_cidr" {
    	description = "Trusted networks (all, ssh included)"
    	type = set(string)
    	default = [
    		"78.128.128.0/17", # CESNET
    		"116.216.0.0/15",  # UNOB, JČU
    		"146.102.0.0/16",  # VŠE
    		"147.32.0.0/15",   # ČVUT, VSCHT
    		"147.228.0.0/14",  # ZČU, VUT, TUL, AVČR
    		"147.251.0.0/16",  # MUNI
    		"158.194.0.0/16",  # UPOL
    		"158.196.0.0/16",  # VŠB
    		"193.84.32.0/20",  # ČZU
    		"193.84.192.0/19", # SLU
    		"195.113.0.0/16",  # CESNET
    		"195.178.64.0/19", # CESNET
    		"2001:718::/32",   # CESNET
    	]
    }
    
    variable "ssh" {
    	description = "SSH key name"
    	default = "openstack"
    }
    
    variable "volumes" {
    	description = "Number of data volumes per node (zero means system disk)"
    	default = 2
    }
    
    variable "volume_size" {
    	description = "Size of each data volume (GB)"
    	default = 125
    }