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
|
|
@ -0,0 +1,26 @@
|
|||
|
||||
variable "project_id" {}
|
||||
variable "objectstorage_bucket_name" {}
|
||||
variable "objectstorage_credentials_group_name" {}
|
||||
variable "expiration_timestamp" {}
|
||||
|
||||
resource "stackit_objectstorage_bucket" "bucket" {
|
||||
project_id = var.project_id
|
||||
name = var.objectstorage_bucket_name
|
||||
}
|
||||
|
||||
resource "stackit_objectstorage_credentials_group" "credentials_group" {
|
||||
project_id = var.project_id
|
||||
name = var.objectstorage_credentials_group_name
|
||||
}
|
||||
|
||||
resource "stackit_objectstorage_credential" "credential" {
|
||||
project_id = stackit_objectstorage_credentials_group.credentials_group.project_id
|
||||
credentials_group_id = stackit_objectstorage_credentials_group.credentials_group.credentials_group_id
|
||||
}
|
||||
|
||||
resource "stackit_objectstorage_credential" "credential_time" {
|
||||
project_id = stackit_objectstorage_credentials_group.credentials_group.project_id
|
||||
credentials_group_id = stackit_objectstorage_credentials_group.credentials_group.credentials_group_id
|
||||
expiration_timestamp = var.expiration_timestamp
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue