Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
givanovexpe committed Oct 15, 2024
1 parent 5b376b3 commit 694152c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion k8s-readonly.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resource "kubernetes_deployment_v1" "apiary_hms_readonly" {

spec {
strategy {
type = 'RollingUpdate'
type = "RollingUpdate"
rolling_update = {
max_surge = var.hms_ro_k8s_rolling_update_strategy.max_surge
max_unavailable = var.hms_ro_k8s_rolling_update_strategy.max_unavailable
Expand Down
2 changes: 1 addition & 1 deletion k8s-readwrite.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resource "kubernetes_deployment_v1" "apiary_hms_readwrite" {

spec {
strategy {
type = 'RollingUpdate'
type = "RollingUpdate"
rolling_update = {
max_surge = var.hms_rw_k8s_rolling_update_strategy.max_surge
max_unavailable = var.hms_rw_k8s_rolling_update_strategy.max_unavailable
Expand Down

0 comments on commit 694152c

Please sign in to comment.