Skip to content

Commit

Permalink
Formatted versions.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
dunefro committed Sep 21, 2023
1 parent 7842f03 commit 59cd81d
Showing 1 changed file with 20 additions and 27 deletions.
47 changes: 20 additions & 27 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
##################################################################################
## Generic
##################################################################################
variable "cluster_name" {
description = "Cluster name"
type = string
Expand All @@ -8,7 +11,6 @@ variable "cluster_oidc_issuer_url" {
type = string
}


variable "aws_region" {
description = "EKS Cluster region"
type = string
Expand All @@ -30,12 +32,18 @@ variable "tags" {
description = "AWS Tags common to all the resources created"
}

##################################################################################
## network
##################################################################################

variable "vpc_id" {
type = string
description = "AWS VPC to deploy Truefoundry rds"
}

#### Control Plane Components Database (truefoundry_db)
##################################################################################
## Database
##################################################################################

variable "truefoundry_db_ingress_security_group" {
type = string
Expand Down Expand Up @@ -109,6 +117,10 @@ variable "truefoundry_db_override_name" {
}
}

##################################################################################
## Mlfoundry bucket
##################################################################################

variable "truefoundry_s3_enable_override" {
description = "Enable override for s3 bucket name. You must pass truefoundry_s3_override_name"
type = bool
Expand Down Expand Up @@ -156,13 +168,9 @@ variable "truefoundry_s3_cors_origins" {
}


###### MLFoundry

# variable "mlfoundry_name" {
# description = "Name of mlfoundry deployment"
# type = string
# }

##################################################################################
## MLfoundry service account
##################################################################################

variable "mlfoundry_k8s_service_account" {
description = "The k8s mlfoundry service account name"
Expand All @@ -174,24 +182,9 @@ variable "mlfoundry_k8s_namespace" {
type = string
}

###### mlmonitoring

# variable "mlmonitoring_name" {
# description = "Name of mlmonitoring deployment"
# type = string
# }

# variable "mlmonitoring_k8s_service_account" {
# description = "The k8s mlmonitoring service account name"
# type = string
# }

# variable "mlmonitoring_k8s_namespace" {
# description = "The k8s mlmonitoring namespace"
# type = string
# }

###### svcfoundry
##################################################################################
## Servicefoundry
##################################################################################

variable "svcfoundry_name" {
description = "Name of svcfoundry deployment"
Expand Down

0 comments on commit 59cd81d

Please sign in to comment.