PrefectHQ / terraform-provider-prefect

Terraform Provider for Prefect Cloud
https://registry.terraform.io/providers/PrefectHQ/prefect/latest/docs
Apache License 2.0
29 stars 13 forks source link

feat: `prefect_service_account` can be queried and imported by name, as well as ID #107

Closed parkedwards closed 8 months ago

parkedwards commented 8 months ago

Note - this PR depends on an upstream Prefect Cloud PR, so the acceptance tests are expected to fail until that change is merged

relates to https://github.com/PrefectHQ/terraform-provider-prefect/issues/103 resolves https://github.com/PrefectHQ/terraform-provider-prefect/issues/101

data "prefect_service_account" "bot" {
  id = "7de0291d-59d0-4d57-a629-fe47960aa61b"
}

# or

data "prefect_service_account" "bot" {
  name = "my-bot-name"
}

as well as

terraform import prefect_service_account.bot name/my-bot-name