terraform.tfvars.template 505 B

1234567891011121314151617181920
  1. {
  2. "cluster_id": "${OCP_CLUSTER_ID}",
  3. "cluster_name": "${OCP_CLUSTER_NAME}",
  4. "base_domain": "${OCP_BASE_DOMAIN}",
  5. "master_count": ${OCP_MASTERS},
  6. "worker_count": ${OCP_WORKERS},
  7. "libvirt_uri": "${OCP_LIBVIRT_URI}",
  8. "os_image": "${OCP_IMAGE}",
  9. "libvirt_network_if": "${OCP_NETDEV}",
  10. "libvirt_ip_range": "${OCP_NETCIDR}",
  11. "libvirt_master_ips": [
  12. ${OCP_MASTER_IPS}
  13. ],
  14. "libvirt_worker_ips": [
  15. ${OCP_WORKER_IPS}
  16. ],
  17. "libvirt_bootstrap_ip": "${OCP_BOOTSTRAP_IP}",
  18. "ssh_key": "${OCP_SSH_PUB_KEY}"
  19. }