Init
This commit is contained in:
commit
c3bc6ab806
40 changed files with 1069 additions and 0 deletions
43
observability/variables.tf
Normal file
43
observability/variables.tf
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
variable "stackit_project_id" {
|
||||
description = "ID of the stackit Project"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "instance_name" {
|
||||
description = "name of the observability instance"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "service_plan" {
|
||||
description = "serviceplan of the observability instance"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "secret_manager_instance_id" {
|
||||
description = "instance id of the secret mangert to store credentials"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "secret_manager_username" {
|
||||
description = "username of the secret mangert to store credentials"
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "secret_manager_password" {
|
||||
description = "password of the secret mangert to store credentials"
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
|
||||
variable "msTeamWebhook" {
|
||||
description = "webhook for msTeams alert channel"
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "observability_url" {
|
||||
description = "observability api url to push configs"
|
||||
type = string
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue