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

     1  # Name of the image to use
     2  # EXAMPLE:
     3  # image_name = "
     4  image_name = "SLES15-SP1-JeOS.x86_64-QU2",
     5  
     6  # Name of the internal network to be created
     7  # EXAMPLE:
     8  # internal_net = "testing"
     9  internal_net = ""
    10  
    11  # Name of the internal subnet to be created
    12  # IMPORTANT: If this variable is not set or empty,
    13  # then it will be generated with schema
    14  # internal_subnet = "${var.internal_net}-subnet"
    15  # EXAMPLE:
    16  # internal_subnet = "testing-subnet"
    17  internal_subnet = ""
    18  
    19  # Name of the internal router to be created
    20  # IMPORTANT: If this variable is not set or empty,
    21  # then it will be generated with schema
    22  # internal_router = "${var.internal_net}-router"
    23  # EXAMPLE:
    24  # internal_router = "testing-router"
    25  internal_router = ""
    26  
    27  # Name of the external network to be used, the one used to allocate floating IPs
    28  # EXAMPLE:
    29  # external_net = "floating"
    30  external_net = ""
    31  
    32  # Identifier to make all your resources unique and avoid clashes with other users of this terraform project
    33  stack_name = "my-caasp-cluster"
    34  
    35  # CIDR of the subnet for the internal network
    36  # EXAMPLE:
    37  # subnet_cidr = "172.28.0.0/24"
    38  subnet_cidr = ""
    39  
    40  # Number of master nodes
    41  masters = 1
    42  
    43  # Number of worker nodes
    44  workers = 2
    45  
    46  # Size of the master nodes
    47  # EXAMPLE:
    48  # master_size = "m1.medium"
    49  master_size = ""
    50  
    51  # Size of the worker nodes
    52  # EXAMPLE:
    53  # worker_size = "m1.medium"
    54  worker_size = ""
    55  
    56  # Attach persistent volumes to workers
    57  workers_vol_enabled = false
    58  
    59  # Size of the worker volumes in GB
    60  workers_vol_size = 5
    61  
    62  # Name of DNS domain
    63  # dnsdomain = "my.domain.com"
    64  dnsdomain = ""
    65  
    66  # Set DNS Entry
    67  dnsentry = false
    68  
    69  # define the repositories to use
    70  # EXAMPLE:
    71  # repositories = {
    72  #   repository1 = "http://example.my.repo.com/repository1/"
    73  #   repository2 = "http://example.my.repo.com/repository2/"
    74  # }
    75  repositories = {}
    76  
    77  # Minimum required packages. Do not remove them.
    78  # Feel free to add more packages
    79  packages = [
    80    "kernel-default",
    81    "-kernel-default-base"
    82  ]
    83  
    84  # ssh keys to inject into all the nodes
    85  # EXAMPLE:
    86  # authorized_keys = [
    87  #  "ssh-rsa <key-content>"
    88  # ]
    89  authorized_keys = [
    90    ""
    91  ]
    92  
    93  # ssh key on openstack to launch the nodes with
    94  # EXAMPLE:
    95  # key_pair = "my_keypair"
    96  key_pair = ""
    97  
    98  # IMPORTANT: Replace these ntp servers with ones from your infrastructure
    99  ntp_servers = ["0.novell.pool.ntp.org", "1.novell.pool.ntp.org", "2.novell.pool.ntp.org", "3.novell.pool.ntp.org"]