Skip to content

Commit

Permalink
circuit breaker
Browse files Browse the repository at this point in the history
  • Loading branch information
msfidelis committed Sep 18, 2021
1 parent 5afff3a commit 8d74b85
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
3 changes: 3 additions & 0 deletions provider.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
provider "aws" {
region = var.aws_region
default_tags {
tags = var.default_tags
}
}

provider "helm" {
Expand Down
10 changes: 9 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ variable "nlb_ingress_type" {

variable "proxy_protocol_v2" {
type = bool
default = true
default = false
}

variable "nlb_ingress_enable_termination_protection" {
Expand All @@ -57,4 +57,12 @@ variable "kiali_virtual_service_host" {
variable "grafana_kiali_virtual_service_host" {
type = string
default = "grafana.kiali.k8s.raj.ninja"
}

variable "default_tags" {
default = {
Environment = "prod"
Foo = "Bar"
Ping = "Pong"
}
}

0 comments on commit 8d74b85

Please sign in to comment.