Skip to content

Commit

Permalink
Merge pull request #111 from canonical/terraform-use-stable-charm-in-…
Browse files Browse the repository at this point in the history
…production

Force using the stable charm in production
  • Loading branch information
plars committed Oct 4, 2023
2 parents ee6fd62 + aa470ec commit 9673be1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "juju_application" "testflinger" {
charm {
name = "testflinger-k8s"
series = "jammy"
channel = "edge"
channel = var.environment == "production" ? "stable" : "edge"
}

config = {
Expand Down

0 comments on commit 9673be1

Please sign in to comment.