feat: add stackit service account creation to tf provider (#708)
* feat: implement service account resource/datasource
This commit is contained in:
parent
6dc6f4129c
commit
23e9a25b4f
14 changed files with 978 additions and 8 deletions
|
|
@ -0,0 +1,4 @@
|
|||
data "stackit_service_account" "sa" {
|
||||
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
||||
email = "sa01-8565oq1@sa.stackit.cloud"
|
||||
}
|
||||
4
examples/resources/stackit_service_account/resource.tf
Normal file
4
examples/resources/stackit_service_account/resource.tf
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
resource "stackit_service_account" "sa" {
|
||||
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
||||
name = "sa01"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue