Terraform provider
Last updated
Was this helpful?
Was this helpful?
provider_installation {
dev_overrides {
"devolutions/dvls" = "/Users/USERNAME/go/bin"
}
direct {
}
}provider "dvls" {
base_uri = "https://your-dvls-instance.com/"
app_id = "your-app-id"
app_secret = "your-app-secret"
}
data "dvls_entry_website" "example" {
id = "id-of-website-entry"
}
output "website_name" {
value = data.dvls_entry_website.example.name
}
terraform {
required_providers {
dvls = {
source = "devolutions/dvls"
}
}
}│ Warning: Provider development overrides are in effect
│
│ The following provider development overrides are set in the CLI configuration:
│ - devolutions/dvls in /Users/USERNAME/go/bin
│
│ The behavior may therefore not match any released version of the provider and applying changes may cause the state to become incompatible
│ with published releases.
╵
data.dvls_entry_website.example: Reading...
data.dvls_entry_website.example: Read complete after 1s [id=123e4567-e89b-12d3-a456-426614174000]
Changes to Outputs:
+ website_name = "TestWebsite"