Skip to content

Commit

Permalink
feat/zedcloud-1055: Add tags and tag_level_settings to the tag resour…
Browse files Browse the repository at this point in the history
…ce (#127)
  • Loading branch information
xyuria-zededa authored Oct 23, 2024
1 parent b305619 commit dcbbbd6
Show file tree
Hide file tree
Showing 33 changed files with 3,659 additions and 212 deletions.
92 changes: 92 additions & 0 deletions docs/data-sources/auth_profile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "zedcloud_auth_profile Data Source - terraform-provider-zedcloud"
subcategory: ""
description: |-
---

# zedcloud_auth_profile (Data Source)





<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `default_role_id` (String) Default Role ID to associate with the profile
- `name` (String) User defined name of the profile. Profile name is unique within an enterprise. Name can't be changed once created
- `title` (String) User defined title for the profile. Title can be changed anytime

### Optional

- `active` (Boolean) Mark this profile as active. Only one profile can be active in a given enterprise
- `description` (String) Detailed description of the profile
- `disable_auto_user_create` (Boolean) Do not automatically create new users if this is set
- `enterprise_id` (String) Parent enterprise ID of the authorization profile
- `oauth_profile` (Block List) Oauth profile configuration details (see [below for nested schema](#nestedblock--oauth_profile))
- `password_profile` (Block List) (see [below for nested schema](#nestedblock--password_profile))
- `profile_type` (String) Authorization profile type
- `test_only` (Boolean)
- `type` (String) Type of the profile

### Read-Only

- `id` (String) Unique system defined profile ID
- `revision` (List of Object) system defined info (see [below for nested schema](#nestedatt--revision))

<a id="nestedblock--oauth_profile"></a>
### Nested Schema for `oauth_profile`

Optional:

- `additional_parameters` (String) pass additional url parameters during the exchange and authorization process
- `client_id` (String) OAUTH client ID
- `client_secret` (String) OAUTH client secret
- `crypto_key` (String)
- `encrypted_secrets` (Map of String)
- `idp_id` (String) id for Vmware IDP
- `jwt_auth_profile` (Block List) Config for JWT based authentication, jwks_uri is derived from OIDC Well Known Endpoints (see [below for nested schema](#nestedblock--oauth_profile--jwt_auth_profile))
- `o_id_c_end_point` (String) OIDC endpoint for oauth validation
- `role_scope` (String) OIDC scope to fetch application role

<a id="nestedblock--oauth_profile--jwt_auth_profile"></a>
### Nested Schema for `oauth_profile.jwt_auth_profile`

Optional:

- `alg` (String) Algorithm for JWT signature verification



<a id="nestedblock--password_profile"></a>
### Nested Schema for `password_profile`

Optional:

- `max_length` (Number)
- `max_password_age` (Number)
- `min_length` (Number)
- `min_lowercase_chars` (Number)
- `min_numeric_chars` (Number)
- `min_password_age` (Number)
- `min_symbol_chars` (Number)
- `min_uppercase_chars` (Number)
- `num_prev_password_check` (Number)
- `password_expiry_notification_period_in_seconds` (Number)


<a id="nestedatt--revision"></a>
### Nested Schema for `revision`

Read-Only:

- `created_at` (String)
- `created_by` (String)
- `curr` (String)
- `prev` (String)
- `updated_at` (String)
- `updated_by` (String)
2,804 changes: 2,597 additions & 207 deletions docs/resources/project.md

Large diffs are not rendered by default.

81 changes: 81 additions & 0 deletions v2/models/configuration_lock.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

148 changes: 148 additions & 0 deletions v2/models/configuration_lock_policy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit dcbbbd6

Please sign in to comment.