terraform-provider-backstage icon indicating copy to clipboard operation
terraform-provider-backstage copied to clipboard

Backstage provider for Terraform

Results 1 terraform-provider-backstage issues
Sort by recently updated
recently updated
newest added

We are currently retrieving Components and Resources from Backstage using `backstage_entities` datasource. ``` data "backstage_entities" "services" { filters = [ "kind=component,spec.lifecycle=production", "kind=resource,spec.lifecycle=production", ] } ``` We would need to have...