[READ-ONLY] Mirror of https://github.com/tiborpilz/infrastructure. Personal Infrastructure managed via terraform & k8s
0

Configure Feed

Select the types of activity you want to include in your feed.

credentials

Tibor Pilz (May 31, 2020, 11:24 PM +0200) 75e2f1c6 c7fcafdf

+10 -3
+1
.gitignore
··· 1 1 .gitsecret/keys/random_seed 2 2 !*.secret 3 3 .env 4 + crentials.libsonnet
.gitsecret/keys/pubring.kbx

This is a binary file and will not be displayed.

.gitsecret/keys/pubring.kbx~

This is a binary file and will not be displayed.

.gitsecret/keys/trustdb.gpg

This is a binary file and will not be displayed.

+1
.gitsecret/paths/mapping.cfg
··· 1 + crentials.libsonnet
+4
credentials.template.libsonnet
··· 1 + { 2 + proxmox_password: '', 3 + cloudflare_api_token: '', 4 + }
+4 -3
main.jsonnet
··· 4 4 local indices_control_nodes = std.range(0, num_control_nodes - 1); 5 5 local indices_worker_nodes = std.range(num_control_nodes, num_control_nodes + num_worker_nodes - 1); 6 6 7 - local ssh_key = importstr sshkey; 8 - local ssh_key_pub = importstr sshkey.pub; 7 + local ssh_key = importstr './ssh_key'; 8 + local ssh_key_pub = importstr './ssh_key.pub'; 9 + local credentials = import './credentials.libsonnet'; 9 10 10 11 local Node(i=0) = { 11 12 name: 'node' + i, ··· 50 51 51 52 local cloudflare = { 52 53 email: 'tibor@pilz.berlin', 53 - api_token: std.extVar('CLOUDFLARE_API_TOKEN'), 54 + api_token: std.extVar('CLOUDFLARE_API_KEY'), 54 55 }; 55 56 56 57 local proxmox_vms = {