tfe_policy_set_parameter

Creates, updates and destroys policy set parameters.

Example Usage

Basic usage:

resource "tfe_organization" "test" {
  name  = "my-org-name"
  email = "admin@company.com"
}

resource "tfe_policy_set" "test" {
  name         = "my-policy-set-name"
  organization = tfe_organization.test.id
}

resource "tfe_policy_set_parameter" "test" {
  key          = "my_key_name"
  value        = "my_value_name"
  policy_set_id = tfe_policy_set.test.id
}

Argument Reference

The following arguments are supported:

Attributes Reference

Import

Parameters can be imported; use <POLICY SET ID>/<PARAMETER ID> as the import ID. For example:

terraform import tfe_policy_set_parameter.test polset-wAs3zYmWAhYK7peR/var-5rTwnSaRPogw6apb