Skip to content

Commit

Permalink
fix: Uses [email protected] in TF module (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gmerold authored Dec 18, 2024
1 parent 719894d commit 16916ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ resource "juju_application" "upf" {
name = "sdcore-upf-k8s"
channel = var.channel
revision = var.revision
base = var.base
}

config = var.config
Expand Down
6 changes: 6 additions & 0 deletions terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ variable "revision" {
default = null
}

variable "base" {
description = "The operating system on which to deploy"
type = string
default = "[email protected]"
}

variable "units" {
description = "Number of units to deploy"
type = number
Expand Down

0 comments on commit 16916ff

Please sign in to comment.