Skip to content

Commit

Permalink
Wrap in quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Yevhen Ivantsov committed Nov 5, 2024
1 parent b6d4747 commit 69437fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/products/confluence/local_home_storage.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resource "kubernetes_persistent_volume" "local_home" {
spec {
access_modes = ["ReadWriteOnce"]
capacity = {
storage = ${data.aws_ebs_snapshot.local_home_snapshot[count.index].volume_size}Gi
storage = "${data.aws_ebs_snapshot.local_home_snapshot[count.index].volume_size}Gi"
}
storage_class_name = local.storage_class
persistent_volume_source {
Expand All @@ -48,7 +48,7 @@ resource "kubernetes_persistent_volume_claim" "local_home" {
access_modes = ["ReadWriteOnce"]
resources {
requests = {
storage = ${data.aws_ebs_snapshot.local_home_snapshot[count.index].volume_size}Gi
storage = "${data.aws_ebs_snapshot.local_home_snapshot[count.index].volume_size}Gi"
}
}
storage_class_name = local.storage_class
Expand Down
4 changes: 2 additions & 2 deletions modules/products/jira/local_home_storage.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resource "kubernetes_persistent_volume" "local_home" {
spec {
access_modes = ["ReadWriteOnce"]
capacity = {
storage = ${data.aws_ebs_snapshot.local_home_snapshot[count.index].volume_size}Gi
storage = "${data.aws_ebs_snapshot.local_home_snapshot[count.index].volume_size}Gi"
}
storage_class_name = local.storage_class
persistent_volume_source {
Expand All @@ -48,7 +48,7 @@ resource "kubernetes_persistent_volume_claim" "local_home" {
access_modes = ["ReadWriteOnce"]
resources {
requests = {
storage = ${data.aws_ebs_snapshot.local_home_snapshot[count.index].volume_size}Gi
storage = "${data.aws_ebs_snapshot.local_home_snapshot[count.index].volume_size}Gi"
}
}
storage_class_name = local.storage_class
Expand Down

0 comments on commit 69437fc

Please sign in to comment.