-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(terraform-provider-jans): update terraform provider (#4148)
Signed-off-by: moabu <47318409+moabu@users.noreply.github.com>
- Loading branch information
Showing
16 changed files
with
839 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
119 changes: 119 additions & 0 deletions
119
terraform-provider-jans/docs/resources/api_app_configuration.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "jans_api_app_configuration Resource - terraform-provider-jans" | ||
subcategory: "" | ||
description: |- | ||
Resource for managing config-api configuration properties. | ||
--- | ||
|
||
# jans_api_app_configuration (Resource) | ||
|
||
Resource for managing config-api configuration properties. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "jans_api_app_configuration" "global" { | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `agama_configuration` (Block List) (see [below for nested schema](#nestedblock--agama_configuration)) | ||
- `api_approved_issuer` (List of String) | ||
- `api_client_id` (String) | ||
- `api_client_password` (String) | ||
- `api_protection_type` (String) | ||
- `audit_log_conf` (Block List) (see [below for nested schema](#nestedblock--audit_log_conf)) | ||
- `auth_issuer_url` (String) | ||
- `auth_openid_configuration_url` (String) | ||
- `auth_openid_introspection_url` (String) | ||
- `auth_openid_revoke_url` (String) | ||
- `auth_openid_token_url` (String) | ||
- `config_oauth_enabled` (Boolean) | ||
- `cors_configuration_filters` (Block List) (see [below for nested schema](#nestedblock--cors_configuration_filters)) | ||
- `data_format_conversion_conf` (Block List) (see [below for nested schema](#nestedblock--data_format_conversion_conf)) | ||
- `disable_jdk_logger` (Boolean) | ||
- `endpoint_injection_enabled` (Boolean) | ||
- `exclusive_auth_scopes` (List of String) | ||
- `external_logger_configuration` (String) | ||
- `logging_layout` (String) | ||
- `logging_level` (String) | ||
- `max_count` (Number) | ||
- `plugins` (Block List) (see [below for nested schema](#nestedblock--plugins)) | ||
- `smallrye_health_root_path` (String) | ||
- `user_exclusion_attributes` (List of String) | ||
- `user_mandatory_attributes` (List of String) | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
|
||
<a id="nestedblock--agama_configuration"></a> | ||
### Nested Schema for `agama_configuration` | ||
|
||
Optional: | ||
|
||
- `mandatory_attributes` (List of String) | ||
- `optional_attributes` (List of String) | ||
|
||
|
||
<a id="nestedblock--audit_log_conf"></a> | ||
### Nested Schema for `audit_log_conf` | ||
|
||
Optional: | ||
|
||
- `enabled` (Boolean) | ||
- `header_attributes` (List of String) | ||
- `ignore_http_method` (List of String) | ||
|
||
|
||
<a id="nestedblock--cors_configuration_filters"></a> | ||
### Nested Schema for `cors_configuration_filters` | ||
|
||
Optional: | ||
|
||
- `cors_allowed_headers` (String) | ||
- `cors_allowed_methods` (String) | ||
- `cors_allowed_origins` (String) | ||
- `cors_enabled` (Boolean) | ||
- `cors_exposed_headers` (String) | ||
- `cors_logging_enabled` (Boolean) | ||
- `cors_preflight_max_age` (Number) | ||
- `cors_request_decorate` (Boolean) | ||
- `cors_support_credentials` (Boolean) | ||
- `filter_name` (String) | ||
|
||
|
||
<a id="nestedblock--data_format_conversion_conf"></a> | ||
### Nested Schema for `data_format_conversion_conf` | ||
|
||
Optional: | ||
|
||
- `enabled` (Boolean) | ||
- `ignore_http_method` (List of String) | ||
|
||
|
||
<a id="nestedblock--plugins"></a> | ||
### Nested Schema for `plugins` | ||
|
||
Optional: | ||
|
||
- `class_name` (String) | ||
- `description` (String) | ||
- `name` (String) | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
# The API App configuration is a global resource that has to be imported, | ||
# before it can be managed (it cannot be created or deleted). You can choose | ||
# any identifier for the import, or use 'global' as in the example below. | ||
terraform import jans_api_app_configuration.global global | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
terraform-provider-jans/examples/resources/jans_api_app_configuration/import.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# The API App configuration is a global resource that has to be imported, | ||
# before it can be managed (it cannot be created or deleted). You can choose | ||
# any identifier for the import, or use 'global' as in the example below. | ||
terraform import jans_api_app_configuration.global global |
3 changes: 3 additions & 0 deletions
3
terraform-provider-jans/examples/resources/jans_api_app_configuration/resource.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
resource "jans_api_app_configuration" "global" { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.