Skip to content

Commit

Permalink
fix: venv path
Browse files Browse the repository at this point in the history
  • Loading branch information
shejri committed Sep 23, 2024
1 parent 79db1e1 commit db4d57b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/modules/github_output/github.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ data "github_actions_public_key" "wp10" {
}

data "external" "encrypt_ssh_key" {
program = ["venv/Scripts/python", "${path.module}/encrypt_github_secrets.py"]
program = ["venv/bin/python", "${path.module}/encrypt_github_secrets.py"]

query = {
public_key = data.github_actions_public_key.wp10.key
Expand All @@ -17,7 +17,7 @@ resource "github_actions_secret" "ssh_key_gh_secret" {
}

data "external" "encrypt_jumphost_ip" {
program = ["venv/Scripts/python", "${path.module}/encrypt_github_secrets.py"]
program = ["venv/bin/python", "${path.module}/encrypt_github_secrets.py"]

query = {
public_key = data.github_actions_public_key.wp10.key
Expand All @@ -31,7 +31,7 @@ resource "github_actions_secret" "jumphost_ip_gh_secret" {
}

data "external" "encrypt_runner_host_ip" {
program = ["venv/Scripts/python", "${path.module}/encrypt_github_secrets.py"]
program = ["venv/bin/python", "${path.module}/encrypt_github_secrets.py"]

query = {
public_key = data.github_actions_public_key.wp10.key
Expand Down

0 comments on commit db4d57b

Please sign in to comment.