Skip to content

Commit

Permalink
fix cr comment
Browse files Browse the repository at this point in the history
  • Loading branch information
talsabagport committed Aug 5, 2024
1 parent 35ee0df commit cb418c0
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/data-sources/port_search.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,3 +225,5 @@ Read-Only:
- `identifier` (String)
- `level` (String)
- `status` (String)


2 changes: 2 additions & 0 deletions docs/resources/port_action_permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,3 +265,5 @@ Optional:
- `roles` (List of String) The roles with execution permission
- `teams` (List of String) The teams with execution permission
- `users` (List of String) The users with execution permission


2 changes: 2 additions & 0 deletions docs/resources/port_aggregation_properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -645,3 +645,5 @@ Optional:

- `average_of` (String) The time periods to calculate the average of, e.g. hour, day, week, month
- `measure_time_by` (String) The property name on which to calculate the the time periods, e.g. $createdAt, $updated_at or any other date property


2 changes: 2 additions & 0 deletions docs/resources/port_blueprint.md
Original file line number Diff line number Diff line change
Expand Up @@ -499,3 +499,5 @@ Required:
Optional:

- `agent` (Boolean) The agent of the webhook changelog destination


2 changes: 2 additions & 0 deletions docs/resources/port_blueprint_permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -450,3 +450,5 @@ Optional:
- `roles` (List of String) Roles with update specific relation permissions
- `teams` (List of String) Teams with update specific relation permissions
- `users` (List of String) Users with update specific relation permissions


2 changes: 2 additions & 0 deletions docs/resources/port_entity.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,5 @@ Optional:

- `many_relations` (Map of List of String) The many relation of the entity
- `single_relations` (Map of String) The single relation of the entity


2 changes: 2 additions & 0 deletions docs/resources/port_integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,5 @@ Required:
Optional:

- `agent` (Boolean) The agent of the webhook changelog destination


2 changes: 2 additions & 0 deletions docs/resources/port_page.md
Original file line number Diff line number Diff line change
Expand Up @@ -481,3 +481,5 @@ terraform import port_page.home_page "\$home"
- `id` (String) The ID of this resource.
- `updated_at` (String) The last update date of the page
- `updated_by` (String) The last updater of the page


2 changes: 2 additions & 0 deletions docs/resources/port_page_permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,5 @@ Optional:
- `roles` (List of String) The roles with read permission
- `teams` (List of String) The teams with read permission
- `users` (List of String) The users with read permission


2 changes: 2 additions & 0 deletions docs/resources/port_scorecard.md
Original file line number Diff line number Diff line change
Expand Up @@ -475,3 +475,5 @@ Required:

- `color` (String) The color of the level
- `title` (String) The title of the level


2 changes: 2 additions & 0 deletions docs/resources/port_team.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ Team resource
- `id` (String) The ID of this resource.
- `provider_name` (String) The provider of the team
- `updated_at` (String) The last update date of the team


2 changes: 2 additions & 0 deletions docs/resources/port_webhook.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,5 @@ Optional:
- `signature_algorithm` (String) The signature algorithm of the webhook
- `signature_header_name` (String) The signature header name of the webhook
- `signature_prefix` (String) The signature prefix of the webhook


2 changes: 1 addition & 1 deletion port/action/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ func ActionSchema() map[string]schema.Attribute {
},
},
"required_approval": schema.StringAttribute{
MarkdownDescription: "Require approval before invoking the action",
MarkdownDescription: "Require approval before invoking the action. Can be one of \"true\", \"false\", \"ANY\" or \"ALL\"",
Optional: true,
Validators: []validator.String{
stringvalidator.OneOf("true", "false", "ANY", "ALL"),
Expand Down

0 comments on commit cb418c0

Please sign in to comment.