Skip to content

Commit

Permalink
fix: Make pagerduty token input variable sensitive everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
bhargavms committed Jan 11, 2024
1 parent b1ee88d commit df847bf
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/honest-two-level-schedule/inputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ variable "team_name" {
variable "pagerduty_token" {
type = string
description = "PagerDuty API token."
sensitive = true
}

variable "dummy_user_count" {
Expand Down
1 change: 1 addition & 0 deletions examples/pagerduty-escalation-policy/inputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ variable "escalation_levels" {
variable "pagerduty_token" {
type = string
description = "PagerDuty API token."
sensitive = true
}
1 change: 1 addition & 0 deletions examples/pagerduty-schedule/inputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ variable "name" {
variable "pagerduty_token" {
type = string
description = "PagerDuty API token."
sensitive = true
}
1 change: 1 addition & 0 deletions examples/pagerduty-service-integration-email/inputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ variable "email_filter" {
variable "pagerduty_token" {
type = string
description = "PagerDuty API token."
sensitive = true
}
1 change: 1 addition & 0 deletions examples/pagerduty-service/inputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ variable "description" {
variable "pagerduty_token" {
type = string
description = "PagerDuty API token."
sensitive = true
}

variable "schedule_suffix" {
Expand Down
1 change: 1 addition & 0 deletions examples/pagerduty-stakeholder/inputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ variable "name" {
variable "pagerduty_token" {
type = string
description = "PagerDuty API token."
sensitive = true
}

variable "role" {
Expand Down
1 change: 1 addition & 0 deletions examples/pagerduty-user/inputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ variable "name" {
variable "pagerduty_token" {
type = string
description = "PagerDuty API token."
sensitive = true
}

variable "role" {
Expand Down
1 change: 1 addition & 0 deletions inputs.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
variable "pagerduty_token" {
type = string
description = "PagerDuty API token."
sensitive = true
}

0 comments on commit df847bf

Please sign in to comment.