Skip to content

Commit

Permalink
[tf][indexer] so vars work with no indexer
Browse files Browse the repository at this point in the history
  • Loading branch information
rustielin authored and aptos-bot committed Apr 20, 2022
1 parent bb7e5fc commit 0be1a9e
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions terraform/testnet/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@ variable "region" {
description = "AWS region"
}

variable "zone_id" {
description = "Route53 Zone ID to create records in"
default = ""
}

variable "tls_sans" {
description = "List of Subject Alternate Names to include in TLS certificate"
type = list(string)
default = []
}

variable "workspace_dns" {
description = "Include Terraform workspace name in DNS records"
default = true
}

variable "iam_path" {
default = "/"
description = "Path to use when naming IAM objects"
Expand Down Expand Up @@ -90,22 +106,6 @@ variable "indexer_helm_values" {
default = {}
}

variable "zone_id" {
description = "Route53 Zone ID to create records in"
default = ""
}

variable "tls_sans" {
description = "List of Subject Alternate Names to include in TLS certificate"
type = list(string)
default = []
}

variable "workspace_dns" {
description = "Include Terraform workspace name in DNS records"
default = true
}

variable "enable_pfn_logger" {
description = "Enable separate public fullnode logger pod"
default = false
Expand Down Expand Up @@ -170,6 +170,7 @@ variable "enable_indexer" {

variable "indexer_db_password" {
description = "password for indexer RDS instance"
default = ""
}

variable "enable_k8s_metrics_server" {
Expand Down

0 comments on commit 0be1a9e

Please sign in to comment.