Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 828 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 828 Bytes

terraform-modules

Terraform modules are reusable, self-contained packages of Terraform configurations that encapsulate a set of resources with well-defined inputs and outputs. They provide a way to organize and reuse infrastructure code by abstracting away common patterns or configurations into reusable components.

This repository contains Terraform modules designed specifically for deploying Juju charms using the Terraform Juju Provider.

Example

You can deploy a Synapse charm by creating a main.tf file like this:

module "synapse" {
  source = "github.com/canonical/terraform-modules.git//modules/k8s/synapse"

  juju_model_name = local.juju_model_name
}