-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathdev.tfrc
More file actions
21 lines (19 loc) · 901 Bytes
/
dev.tfrc
File metadata and controls
21 lines (19 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# https://developer.hashicorp.com/terraform/cli/config/config-file
provider_installation {
# This disables the version and checksum verifications for this provider and
# forces Terraform to look for the provider plugin in the given directory.
dev_overrides {
# Retrieve the provider binary from the `.build/` directory
# in the repository root. This binary is created by running
# `mise run build`.
#
# This file will be referenced from `./dev/<resource>`, which is
# created by running `mise run dev-new <resource name>`.
"prefecthq/prefect" = "../../.build/"
"registry.terraform.io/prefecthq/prefect" = "../../.build/"
}
# For all other providers, install them directly from their origin provider
# registries as normal. If you omit this, Terraform will _only_ use
# the dev_overrides block, and so no other providers will be available.
direct {}
}