Modules that help you discover attributes needed to use Terraform modules for Google Cloud Platform.
A data-only module that fetches information about essential platform and application infrastructure. Produces a variety of useful outputs based on few inputs.
module "init" {
source = "github.com/entur/terraform-google-init//modules/init?ref=v1.0.0"
...
}
See the README.md
under each module's subfolder for a list of supported inputs and outputs. For examples showing how they're implemented, check the examples subfolder.
You can control the version of a module dependency by adding ?ref=TAG
at the end of the source argument, as shown in the example above. This is highly recommended. You can find a list of available versions here.
Dependency automation tools such as Renovate Bot will be able to discover new releases and suggest updates automatically.