github.com/SUSE/skuba@v1.4.17/ci/infra/libvirt/terraform.tfvars.example (about)

     1  # URL of the libvirt server
     2  # EXAMPLE:
     3  # libvirt_uri = "qemu:///system"
     4  libvirt_uri = ""
     5  
     6  # Path of the key file used to connect to the libvirt server
     7  # Note this value will be appended to the libvirt_uri as a 'keyfile' query: <libvirt_uri>?keyfile=<libvirt_keyfile>
     8  # EXAMPLE:
     9  # libvirt_keyfile = "~/.ssh/custom_id"
    10  libvirt_keyfile = ""
    11  
    12  # URL of the image to use
    13  # EXAMPLE:
    14  # image_uri = "http://download.suse.com/..."
    15  image_uri = ""
    16  
    17  # Identifier to make all your resources unique and avoid clashes with other users of this terraform project
    18  stack_name = "my-caasp-cluster"
    19  
    20  # CIDR of the network
    21  network_cidr = "10.17.0.0/22"
    22  
    23  # Enable creation of LB node
    24  create_lb = true
    25  
    26  # Number of master nodes
    27  masters = 1
    28  
    29  # Number of worker nodes
    30  workers = 2
    31  
    32  # Name of DNS domain
    33  dns_domain = "caasp.local"
    34  
    35  # Username for the cluster nodes
    36  # EXAMPLE:
    37  username = "sles"
    38  
    39  # define the repositories to use
    40  # EXAMPLE:
    41  # repositories = {
    42  #   repository1 = "http://example.my.repo.com/repository1/"
    43  #   repository2 = "http://example.my.repo.com/repository2/"
    44  # }
    45  repositories = {}
    46  
    47  # define the repositories to use for the loadbalancer node
    48  # EXAMPLE:
    49  # repositories = {
    50  #   repository1 = "http://example.my.repo.com/repository3/"
    51  #   repository2 = "http://example.my.repo.com/repository4/"
    52  # }
    53  lb_repositories = {}
    54  
    55  # Minimum required packages. Do not remove them.
    56  # Feel free to add more packages
    57  packages = [
    58    "kernel-default",
    59    "-kernel-default-base"
    60  ]
    61  
    62  # ssh keys to inject into all the nodes
    63  # EXAMPLE:
    64  # authorized_keys = [
    65  #  "ssh-rsa <key-content>"
    66  # ]
    67  authorized_keys = [
    68    ""
    69  ]
    70  
    71  # IMPORTANT: Replace these ntp servers with ones from your infrastructure
    72  ntp_servers = ["0.novell.pool.ntp.org", "1.novell.pool.ntp.org", "2.novell.pool.ntp.org", "3.novell.pool.ntp.org"]