-
Notifications
You must be signed in to change notification settings - Fork 0
/
MODULE.bazel
34 lines (28 loc) · 1.28 KB
/
MODULE.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
###############################################################################
# Bazel now uses Bzlmod by default to manage external dependencies.
# Please consider migrating your external dependencies from WORKSPACE to MODULE.bazel.
#
# For more details, please check https://github.com/bazelbuild/bazel/issues/18958
###############################################################################
"VJftw/bazel_terraform"
module(
name = "bazel_terraform",
version = "0.0.0",
compatibility_level = 1,
)
# Dependencies
bazel_dep(name = "aspect_bazel_lib", version = "2.1.0")
bazel_dep(name = "bazel_skylib", version = "1.5.0")
bazel_dep(name = "platforms", version = "0.0.8")
# # Dev - local
# terraform = use_extension("//terraform:extensions.bzl", "terraform")
# terraform.toolchains(terraform_version = "1.6.6")
# terraform.toolchains(terraform_version = "1.2.8")
# terraform.toolchains(terraform_version = "1.1.4")
# terraform.toolchains(terraform_version = "1.0.3")
# terraform.toolchains(terraform_version = "0.15.4")
# terraform.toolchains(terraform_version = "0.14.11")
# terraform.toolchains(terraform_version = "0.13.7")
# terraform.toolchains(terraform_version = "0.12.31")
# terraform.toolchains(terraform_version = "0.11.15")
# use_repo(terraform, "terraform_terraform_toolchains")