terraform-provider-stackitp.../docs/resources/logme_credential.md
Alexander Dahmen 721e10a02f
chore(examples): Add import examples for all resources (#939)
* 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>
2025-08-08 14:03:27 +02:00

1.3 KiB

page_title subcategory description
stackit_logme_credential Resource - stackit LogMe credential resource schema. Must have a region specified in the provider configuration.

stackit_logme_credential (Resource)

LogMe credential resource schema. Must have a region specified in the provider configuration.

Example Usage

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}"
}

Schema

Required

  • instance_id (String) ID of the LogMe instance.
  • project_id (String) STACKIT Project ID to which the instance is associated.

Read-Only

  • credential_id (String) The credential's ID.
  • host (String)
  • id (String) Terraform's internal resource identifier. It is structured as "project_id,instance_id,credential_id".
  • password (String, Sensitive)
  • port (Number)
  • uri (String, Sensitive)
  • username (String)