Terraform Schema
The schema for the Lacework Edge Terraform Provider is available from the provider itself, since there may be schema changes between versions.
To obtain the schema of the latest version:
Prerequisites:
- Terraform CLI
- (optional) jq
Steps:
-
Create a new folder (i.e.
edgeguardian-tf
). -
In that folder, put the following into
versions.tf
:
terraform {
required_providers {
edgeguardian = {
source = "edgeguardian-artifacts.s3-us-west-2.amazonaws.com/edgeguardian/api"
}
}
}
- Run the following commands:
terraform init
terraform providers schema -json | jq . | tee edgeguardian-schema.json