Initial Implementation of Github Repo Env Secrets

This commit is contained in:
2024-10-20 02:41:11 -03:00
parent 95eba14975
commit 730cc1687e
6 changed files with 108 additions and 1 deletions

19
github/config.tf Normal file
View File

@@ -0,0 +1,19 @@
variable "environment_name" {
type = string
}
variable "github_owner" {
type = string
default = "HideyoshiSolutions"
}
variable "github_repository" {
type = string
default = "infra-hideyoshi.com"
}
variable "cluster_kubeconfig" {
type = string
sensitive = true
}