-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mark secret variables as sensitive (#320)
- Loading branch information
1 parent
5797493
commit 0702313
Showing
9 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,35 @@ | ||
variable "do_token" { | ||
description = "Token for authentication." | ||
type = string | ||
sensitive = true | ||
} | ||
|
||
variable "R2_ACCESS_KEY" { | ||
description = "S3 access key id" | ||
type = string | ||
sensitive = true | ||
} | ||
|
||
variable "R2_SECRET_KEY" { | ||
description = "S3 private access key" | ||
type = string | ||
sensitive = true | ||
} | ||
|
||
variable "slack_token" { | ||
description = "slack access token" | ||
type = string | ||
sensitive = true | ||
} | ||
|
||
variable "NEW_RELIC_API_KEY" { | ||
description = "New Relic API KEY" | ||
type = string | ||
sensitive = true | ||
} | ||
|
||
variable "NEW_RELIC_ACCOUNT_ID" { | ||
description = "The New Relic Account ID" | ||
type = string | ||
sensitive = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
variable "do_token" { | ||
description = "Token for authentication." | ||
type = string | ||
sensitive = true | ||
} | ||
|
||
variable "R2_ACCESS_KEY" { | ||
description = "S3 access key id" | ||
type = string | ||
sensitive = true | ||
} | ||
|
||
variable "R2_SECRET_KEY" { | ||
description = "S3 private access key" | ||
type = string | ||
sensitive = true | ||
} | ||
|
||
variable "slack_token" { | ||
description = "slack access token" | ||
type = string | ||
sensitive = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
variable "do_token" { | ||
description = "Token for authentication." | ||
type = string | ||
sensitive = true | ||
} | ||
|
||
variable "slack_token" { | ||
description = "slack access token" | ||
type = string | ||
sensitive = true | ||
} | ||
|
||
variable "NEW_RELIC_API_KEY" { | ||
description = "New Relic API KEY" | ||
type = string | ||
sensitive = true | ||
} | ||
|
||
variable "NEW_RELIC_ACCOUNT_ID" { | ||
description = "The New Relic Account ID" | ||
type = string | ||
sensitive = true | ||
} |