Skip to content

0.1.5

Compare
Choose a tag to compare
@github-actions github-actions released this 17 Feb 07:09
· 62 commits to master since this release

Adding to your Workspace

To use this version, add the following lines to your WORKSPACE file:

# Import http_archive if not already in use
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

# Add Terraform rules as repository
http_archive(
    name = "tf_modules",
    urls = ["https://github.com/theothertomelliott/bazel-terraform-rules/releases/download/0.1.5/bazel-terraform-rules-0.1.5.tar.gz"],
    sha256 = "b5e4428bbed26e78fc60ff2b76fda910cb13ddb50900b3879dd0916f04dab107",
)
load("@tf_modules//toolchains/terraform:toolchain.bzl", "register_terraform_toolchain")

load("@tf_modules//:deps.bzl", "bazel_terraform_rules_deps")
bazel_terraform_rules_deps()

# Register required Terraform versions
register_terraform_toolchain("1.2.3", default=True)

Changelog

  • no changes