forked from aws-ia/terraform-aws-eks-blueprints
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request aws-ia#1 from candonov/argo-multi-cluster
feat: Adding acm creation and validation
- Loading branch information
Showing
4 changed files
with
94 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 44 additions & 29 deletions
73
examples/gitops/argocd-multi-cluster/hub-cluster/variables.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,71 @@ | ||
variable "hub_cluster_name" { | ||
description = "Hub Cluster Name" | ||
type = string | ||
default = "hub-cluster" | ||
} | ||
variable "hub_region" { | ||
description = "Hub Cluster Region" | ||
type = string | ||
default = "us-west-2" | ||
} | ||
variable "hub_profile" { | ||
description = "Hub Cluster CLI Profile" | ||
variable "argocd_sso_cli_client_id" { | ||
description = "ArgoCD SSO OIDC cliClientID" | ||
type = string | ||
default = "default" | ||
default = "" | ||
} | ||
variable "argocd_domain" { | ||
description = "Hosted Zone domain" | ||
|
||
variable "argocd_sso_client_id" { | ||
description = "ArgoCD SSO OIDC clientID" | ||
type = string | ||
default = "exmaple.com" | ||
default = "" | ||
} | ||
variable "argocd_domain_private_zone" { | ||
|
||
variable "domain_private_zone" { | ||
description = "Is ArgoCD private zone" | ||
type = bool | ||
default = false | ||
} | ||
|
||
variable "argocd_enable_sso" { | ||
description = "Enable SSO for ArgoCD" | ||
type = bool | ||
default = false | ||
} | ||
|
||
variable "argocd_sso_client_secret" { | ||
description = "ArgoCD SSO OIDC clientSecret" | ||
type = string | ||
default = "" | ||
sensitive = true | ||
} | ||
|
||
variable "argocd_sso_issuer" { | ||
description = "ArgoCD SSO OIDC issuer" | ||
type = string | ||
default = "" | ||
} | ||
variable "argocd_sso_client_id" { | ||
description = "ArgoCD SSO OIDC clientID" | ||
|
||
variable "argocd_sso_logout_url" { | ||
description = "ArgoCD SSO OIDC logoutURL" | ||
type = string | ||
default = "" | ||
} | ||
variable "argocd_sso_client_secret" { | ||
description = "ArgoCD SSO OIDC clientSecret" | ||
|
||
variable "domain_name" { | ||
description = "Domain Name" | ||
type = string | ||
default = "" | ||
sensitive = true | ||
} | ||
variable "argocd_sso_logout_url" { | ||
description = "ArgoCD SSO OIDC logoutURL" | ||
|
||
variable "enable_ingress" { | ||
description = "Enable ingress" | ||
type = bool | ||
default = false | ||
} | ||
|
||
variable "hub_cluster_name" { | ||
description = "Hub Cluster Name" | ||
type = string | ||
default = "" | ||
default = "hub-cluster" | ||
} | ||
variable "argocd_sso_cli_client_id" { | ||
description = "ArgoCD SSO OIDC cliClientID" | ||
|
||
variable "hub_profile" { | ||
description = "Hub Cluster CLI Profile" | ||
type = string | ||
default = "" | ||
default = "default" | ||
} | ||
|
||
variable "hub_region" { | ||
description = "Hub Cluster Region" | ||
type = string | ||
default = "us-west-2" | ||
} |