Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(eps): fix docs issues #1011

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/data-sources/enterprise_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ data "flexibleengine_enterprise_project" "test" {
* `id` - (Optional, String) Specifies the ID of an enterprise project. The value "0" indicates the default enterprise project.

* `status` - (Optional, Int) Specifies the status of an enterprise project.
+ 1 indicates Enabled.
+ 2 indicates Disabled.
+ 1 indicates Enabled.
+ 2 indicates Disabled.

## Attributes Reference
## Attribute Reference

In addition to all arguments above, the following attributes are exported:

Expand Down
17 changes: 14 additions & 3 deletions docs/resources/enterprise_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,18 @@ resource "flexibleengine_enterprise_project" "test" {

## Argument Reference

* `name` - (Optional, String) Specifies the name of the enterprise project.
* `name` - (Required, String) Specifies the name of the enterprise project.
This parameter can contain 1 to 64 characters. Only letters, digits, underscores (_), and hyphens (-) are allowed.
The name must be unique in the domain and cannot include any form of the word "default" ("deFaulT", for instance).

* `description` - (Optional, String) Specifies the description of the enterprise project.

* `enable` - (Optional, Bool) Specifies whether to enable the enterprise project. Default to *true*.
* `enable` - (Optional, Bool) Specifies whether to enable the enterprise project. Default to **true**.

## Attributes Reference
* `skip_disable_on_destroy` - (Optional, Bool) Specifies whether to skip disable the enterprise project on destroy.
Defaults to **false**.

## Attribute Reference

In addition to all arguments above, the following attributes are exported:

Expand All @@ -45,6 +48,14 @@ In addition to all arguments above, the following attributes are exported:

* `updated_at` - Indicates the UTC time when the enterprise project was modified. Example: 2018-05-28T02:21:36Z

## Timeouts

This resource provides the following timeouts configuration options:

* `create` - Default is 5 minutes.
* `update` - Default is 5 minutes.
* `delete` - Default is 5 minutes.

## Import

Enterprise projects can be imported using the `id`, e.g.
Expand Down
Loading