Overview
This section introduces how to manage Verda resources declaratively using infrastructure‑as‑code tools. You can leverage the Verda provider from both Terraform and OpenTofu to provision and configure.
# From Terraform Registry (works in OpenTofu as well)
terraform {
required_providers {
verda = {
source = "verda-cloud/verda"
version = "~> 1.0"
}
}
}
# Or, explicitly from OpenTofu Registry
terraform {
required_providers {
verda = {
source = "registry.opentofu.org/verda-cloud/verda"
version = "~> 1.0"
}
}
}
Last updated
Was this helpful?