Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
addyess committed Jan 13, 2025
1 parent 87db670 commit cd3f75b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/charm/howto/install-terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ Example `main.tf`:
```hcl
provider "juju" {}
resource "juju_model" "this" {
name = "juju-myk8s" # name of the juju model
resource "juju_model" "my_model" {
name = "juju-myk8s"
}
variable "k8s" {
Expand All @@ -49,14 +49,14 @@ variable "k8s" {
module "k8s" {
source = "git::https://github.com/canonical/k8s-operator//charms/worker/k8s/terraform?ref=main"
model = juju_model.this.name
model = juju_model.my_model.name
channel = var.k8s.channel
units = 3
}
module "k8s-worker" {
source = "git::https://github.com/canonical/k8s-operator//charms/worker/terraform?ref=main"
model = juju_model.this.name
model = juju_model.my_model.name
channel = var.k8s.channel
units = 2
}
Expand Down

0 comments on commit cd3f75b

Please sign in to comment.