8000 GitHub - contiamo/terraform: Terraform modules and snippets.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Terraform modules and snippets.

Notifications You must be signed in to change notification settings

contiamo/terraform

Repository files navigation

Terraform

Contains Terraform modules.

Usage

  • Modules stored in this repo can be referenced in other projects:

    module "slack" {
        source = "git@github.com:contiamo/terraform.git//slack"
        channel_name = "[your value]"
        ...
    }

    It is also possible to pin a module version:

    module "slack" {
        source = "git@github.com:contiamo/terraform.git//slack?ref=tags/v0.1.0"
        channel_name = "[your value]"
        ...
    }
  • Refer to individual module docs for examples.

0