Skip to content

Commit

Permalink
Added sensitive designation to the protected header example
Browse files Browse the repository at this point in the history
  • Loading branch information
bczoma committed Mar 7, 2024
1 parent 297569a commit c65f30b
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions examples/adding-headers/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.

variable "protected_request_headers" {
type = list(object({
header_name = string
header_value = string
}))
default = []
}
variable "protected_request_headers" {
type = list(object({
header_name = string
header_value = string
}))
default = []
sensitive = true
}

0 comments on commit c65f30b

Please sign in to comment.