Skip to content

syltek/terraform-template

Repository files navigation

terraform-{provider}-{service}

Brief description of what the module creates.

Important Notes

Key considerations, limitations, or special requirements for this module.

Inputs

Outputs

Usage

Example for account-agnostic resources

module "example" {
  source  = "app.terraform.io/Playtomic/{service}/{provider}"
  version = "~> 0.1"

  metadata = {
    name        = "ExampleResource"
    description = "Example resource description"
    tags = {
      team = "infrastructure"
    }
  }

  # Add your configuration here
  # config = {
  #   field_name = "value"
  # }
}

Example for account-specific resources

module "example" {
  source  = "app.terraform.io/Playtomic/{service}/{provider}"
  version = "~> 0.1"

  metadata = {
    name        = "example"
    description = "Example resource description"
    account     = "example-account"
    environment = "develop"
    tags = {
      team = "infrastructure"
    }
  }

  # Add your configuration here
  # config = {
  #   field_name = "value"
  # }
}

About

A template to create terraform modules.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •