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

View File

@@ -15,6 +15,7 @@ variable "project_domain" {
variable "k3s_token" {
type = string
sensitive = true
}
variable "number_of_workers" {
@@ -25,14 +26,17 @@ variable "number_of_workers" {
variable "aws_region" {
type = string
default = "sa-east-1"
sensitive = true
}
variable "aws_access" {
type = string
sensitive = true
}
variable "aws_secret" {
type = string
sensitive = true
}
variable "aws_instance_type" {
@@ -47,16 +51,35 @@ variable "aws_ami" {
variable "cloudflare_api_token" {
type = string
sensitive = true
}
variable "cloudflare_zone_id" {
type = string
sensitive = true
}
variable "ssh_public_key_main" {
type = string
sensitive = true
}
variable "ssh_public_key_ci_cd" {
type = string
sensitive = true
}
variable "github_owner" {
type = string
default = "HideyoshiSolutions"
}
variable "github_token" {
type = string
sensitive = true
}
variable "github_repository" {
type = string
default = "infra-hideyoshi.com"
}