Onboard SQLServer Flex user resource (#403)

* Onboard SQLServer Flex user resource

* change roles

* fix unit tests

* make database field optional // adapt test and documentation

* add sleep time to instance creation

* fix service name in logs and descriptions

* extend username plan modifiers

* update docs

* remove database field

* remove database // make roles optional

* update docs
This commit is contained in:
GokceGK 2024-06-24 14:09:55 +02:00 committed by GitHub
parent 50d74e6695
commit 932fff6223
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 1343 additions and 2 deletions

View file

@ -0,0 +1,7 @@
resource "stackit_sqlserverflex_user" "example" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
instance_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
username = "username"
roles = ["role"]
database = "database"
}