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

add datasource for policy_set

Open Uk1288 opened this issue 2 years ago • 0 comments

Description

Add datasource for policy set. This PR is in relation to the tfe_workspace_policy_set work here https://github.com/hashicorp/terraform-provider-tfe/pull/591

Remember to:

Testing plan

  1. Use datasource like:
data "tfe_policy_set" "readable_policy_set" {
  name = "my-policy-set"
  organization = "awesome-org"
}

External links

Include any links here that might be helpful for people reviewing your PR. If there are none, feel free to delete this section.

Output from acceptance tests

Please run applicable acceptance tests locally and include the output here. See TESTS.md to learn how to run acceptance tests.

If you are an external contributor, your contribution(s) will first be reviewed before running them against the project's CI pipeline.

$ TESTARGS="-run TestAccTFEWorkspace" make testacc

...

Uk1288 avatar Aug 09 '22 12:08 Uk1288