feat(objectstorage): Min/Max acceptance tests (#850)
Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de>
This commit is contained in:
parent
a2cd8a0200
commit
f572b5c386
18 changed files with 192 additions and 135 deletions
|
|
@ -33,6 +33,6 @@ data "stackit_objectstorage_bucket" "example" {
|
|||
|
||||
### Read-Only
|
||||
|
||||
- `id` (String) Terraform's internal data source identifier. It is structured as "`project_id`,`name`".
|
||||
- `id` (String) Terraform's internal data source identifier. It is structured as "`project_id`,`region`,`name`".
|
||||
- `url_path_style` (String)
|
||||
- `url_virtual_hosted_style` (String)
|
||||
|
|
|
|||
|
|
@ -36,5 +36,5 @@ data "stackit_objectstorage_credential" "example" {
|
|||
### Read-Only
|
||||
|
||||
- `expiration_timestamp` (String)
|
||||
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`credentials_group_id`,`credential_id`".
|
||||
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`region`,`credentials_group_id`,`credential_id`".
|
||||
- `name` (String)
|
||||
|
|
|
|||
|
|
@ -24,15 +24,15 @@ data "stackit_objectstorage_credentials_group" "example" {
|
|||
|
||||
### Required
|
||||
|
||||
- `credentials_group_id` (String) The credentials group ID.
|
||||
- `project_id` (String) Object Storage Project ID to which the credentials group is associated.
|
||||
|
||||
### Optional
|
||||
|
||||
- `credentials_group_id` (String) The credentials group ID.
|
||||
- `name` (String) The credentials group's display name.
|
||||
- `region` (String) The resource region. If not defined, the provider region is used.
|
||||
|
||||
### Read-Only
|
||||
|
||||
- `id` (String) Terraform's internal data source identifier. It is structured as "`project_id`,`credentials_group_id`".
|
||||
- `id` (String) Terraform's internal data source identifier. It is structured as "`project_id`,`region`,`credentials_group_id`".
|
||||
- `name` (String) The credentials group's display name.
|
||||
- `urn` (String) Credentials group uniform resource name (URN)
|
||||
|
|
|
|||
|
|
@ -33,6 +33,6 @@ resource "stackit_objectstorage_bucket" "example" {
|
|||
|
||||
### Read-Only
|
||||
|
||||
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`name`".
|
||||
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`region`,`name`".
|
||||
- `url_path_style` (String)
|
||||
- `url_virtual_hosted_style` (String)
|
||||
|
|
|
|||
|
|
@ -37,6 +37,6 @@ resource "stackit_objectstorage_credential" "example" {
|
|||
|
||||
- `access_key` (String)
|
||||
- `credential_id` (String) The credential ID.
|
||||
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`credentials_group_id`,`credential_id`".
|
||||
- `id` (String) Terraform's internal resource identifier. It is structured as "`project_id`,`region`,`credentials_group_id`,`credential_id`".
|
||||
- `name` (String)
|
||||
- `secret_access_key` (String, Sensitive)
|
||||
|
|
|
|||
|
|
@ -34,5 +34,5 @@ resource "stackit_objectstorage_credentials_group" "example" {
|
|||
### Read-Only
|
||||
|
||||
- `credentials_group_id` (String) The credentials group ID
|
||||
- `id` (String) Terraform's internal data source identifier. It is structured as "`project_id`,`credentials_group_id`".
|
||||
- `id` (String) Terraform's internal data source identifier. It is structured as "`project_id`,`region`,`credentials_group_id`".
|
||||
- `urn` (String) Credentials group uniform resource name (URN)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue