@@ -123,10 +123,9 @@ variable "grafana_s3_image_bucket_region" {
123
123
variable "recreate_pods" {
124
124
description = " Recreate the pods with every helm update"
125
125
type = bool
126
- default = " false"
126
+ default = false
127
127
}
128
128
129
-
130
129
variable "grafana_service_account" {
131
130
description = " Name of the Service Account for Grafana"
132
131
type = string
@@ -201,14 +200,14 @@ variable "grafana_service_type" {
201
200
202
201
variable "grafana_service_port" {
203
202
description = " Port of the service"
204
- type = string
205
- default = " 80 "
203
+ type = number
204
+ default = 80
206
205
}
207
206
208
207
variable "grafana_service_target_port" {
209
208
description = " Port in container to expose service"
210
- type = string
211
- default = " 3000"
209
+ type = number
210
+ default = 3000
212
211
}
213
212
214
213
variable "grafana_service_annotations" {
@@ -454,14 +453,14 @@ variable "grafana_okta_enabled" {
454
453
default = false
455
454
}
456
455
457
- variable "GRAFANA_OAUTH_CLIENT_ID " {
458
- description = " GRAFANA_OAUTH_CLIENT_ID "
456
+ variable "grafana_oauth_client_id " {
457
+ description = " client_id of the App "
459
458
type = string
460
459
default = " "
461
460
}
462
461
463
- variable "GRAFANA_OAUTH_CLIENT_SECRET " {
464
- description = " GRAFANA_OAUTH_CLIENT_SECRET "
462
+ variable "grafana_oauth_client_secret " {
463
+ description = " client_secret between app and authorisation server "
465
464
type = string
466
465
default = " "
467
466
}
@@ -591,14 +590,14 @@ variable "image_renderer_security_context" {
591
590
592
591
variable "image_renderer_port" {
593
592
description = " image-renderer service port used by both service and deployment"
594
- type = string
595
- default = " 8081"
593
+ type = number
594
+ default = 8081
596
595
}
597
596
598
597
variable "image_renderer_target_port" {
599
598
description = " image-renderer service targetPort used by both service and deployment"
600
- type = string
601
- default = " 8081"
599
+ type = number
600
+ default = 8081
602
601
}
603
602
604
603
variable "image_renderer_resources" {
0 commit comments