Skip to content

Commit

Permalink
chore: updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jbristowe committed Dec 5, 2022
1 parent f6b205d commit a94c297
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ resource "octopusdeploy_environment" "example" {

Required:

- `environment_type` (String) The Jira environment type of this Octopus deployment environment.
- `environment_type` (String) The Jira environment type of this Octopus deployment environment. Valid values are `"development"`, `"production"`, `"staging"`, `"testing"`, or `"unmapped"`.


<a id="nestedblock--jira_service_management_extension_settings"></a>
Expand Down
2 changes: 1 addition & 1 deletion internal/environments/extension_settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func FlattenServiceNowExtensionSettings(serviceNowExtensionSettings *environment
func GetJiraExtensionSettingsSchema() map[string]*schema.Schema {
return map[string]*schema.Schema{
"environment_type": {
Description: "The Jira environment type of this Octopus deployment environment.",
Description: "The Jira environment type of this Octopus deployment environment. Valid values are `\"development\"`, `\"production\"`, `\"staging\"`, `\"testing\"`, or `\"unmapped\"`.",
Required: true,
Type: schema.TypeString,
ValidateDiagFunc: validation.ToDiagFunc(validation.StringInSlice([]string{
Expand Down

0 comments on commit a94c297

Please sign in to comment.