diff --git a/provisioning/README.md b/provisioning/README.md index 36e3920..e0872fb 100644 --- a/provisioning/README.md +++ b/provisioning/README.md @@ -36,9 +36,6 @@ Provisioning, configuration and manifests for my Kubernetes dev cluster on Hetzn username: user_hashed_password: user_ssh_public_key: - github_username: - github_repo: - github_token: ``` 4. **Encrypt the secrets file:** diff --git a/provisioning/main.tf b/provisioning/main.tf index 7c90211..795c469 100644 --- a/provisioning/main.tf +++ b/provisioning/main.tf @@ -51,9 +51,6 @@ data "cloudinit_config" "k8s_node" { for key in split("\n", data.sops_file.secrets.data["user_ssh_public_keys"]) : key if trimspace(key) != "" ] - github_username = data.sops_file.secrets.data["github_username"] - github_repo = data.sops_file.secrets.data["github_repo"] - github_token = data.sops_file.secrets.data["github_token"] }) } } @@ -146,9 +143,6 @@ output "cloud_init_raw" { for key in split("\n", data.sops_file.secrets.data["user_ssh_public_keys"]) : key if trimspace(key) != "" ] - github_username = data.sops_file.secrets.data["github_username"] - github_repo = data.sops_file.secrets.data["github_repo"] - github_token = data.sops_file.secrets.data["github_token"] }) sensitive = true }