* chore(examples): Add import examples for all resources Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de> * Add guide: How to import resources Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de> --------- Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de>
10 lines
No EOL
382 B
HCL
10 lines
No EOL
382 B
HCL
resource "stackit_logme_credential" "example" {
|
|
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
instance_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
}
|
|
|
|
# Only use the import statement, if you want to import an existing logme credential
|
|
import {
|
|
to = stackit_logme_credential.import-example
|
|
id = "${var.project_id},${var.logme_instance_id},${var.logme_credentials_id}"
|
|
} |