configs
Creates, updates, deletes, gets or lists a configs resource.
Overview
| Name | configs |
| Type | Resource |
| Id | aws.cloudhsm.configs |
Fields
The following fields are returned by SELECT queries:
- get_config
| Name | Datatype | Description |
|---|---|---|
config_cred | string | The certificate file containing the server.pem files of the HSMs. (pattern: <code>[\w :+=./\-]*</code>) |
config_file | string | The chrystoki.conf configuration file. (pattern: <code>[\w :+=./\-]*</code>) |
config_type | string | The type of credentials. (pattern: <code>[\w :+=./\-]*</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_config | select | region | This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide, and the AWS CloudHSM Classic API Reference. For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference. Gets the configuration files necessary to connect to all high availability partition groups the client is associated with. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_config
This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide, and the AWS CloudHSM Classic API Reference. For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference. Gets the configuration files necessary to connect to all high availability partition groups the client is associated with.
SELECT
config_cred,
config_file,
config_type
FROM aws.cloudhsm.configs
WHERE region = '{{ region }}' -- required
;