1
0
Форкнуть 0
This commit is contained in:
Eugene 2021-04-08 18:13:04 -07:00
Родитель 3b97b33131
Коммит cb807211b4
3 изменённых файлов: 1 добавлений и 8 удалений

Просмотреть файл

@ -21,7 +21,6 @@ env:
ARM_TENANT_ID: ${{ secrets.TENANT }}
PREFIX: ${{ secrets.RESOURCE_PREFIX }}
ENVIRONMENT: ${{ secrets.ENVIRONMENT }}
TF_VAR_github_repo: ${{ github.repository }}
TF_VAR_github_owner: ${{ github.repository_owner }}
TF_VAR_github_token: ${{secrets.GITHUB_PAT}}

Просмотреть файл

@ -25,7 +25,7 @@ data "flux_install" "main" {
data "flux_sync" "main" {
target_path = var.target_sync_path
url = "https://github.com/${var.github_repo}.git"
url = "https://github.com/${var.github_owner}/${var.repository_name}.git"
branch = var.branch
secret = var.flux_auth_secret
}

Просмотреть файл

@ -22,12 +22,6 @@ variable "github_token" {
default = ""
}
variable "github_repo" {
type = string
description = "github repository name (with owner)"
default = ""
}
variable "repository_name" {
type = string