You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"newrelic_synthetics_secure_credential" {
source="./modules/newrelic/r/newrelic_synthetics_secure_credential"# created_at - (optional) is a type of stringcreated_at=null# description - (optional) is a type of stringdescription=null# key - (required) is a type of stringkey=null# last_updated - (optional) is a type of stringlast_updated=null# value - (required) is a type of stringvalue=null
}
variable"created_at" {
description="(optional) - The time the secure credential was created."type=stringdefault=null
}
variable"description" {
description="(optional) - The secure credential's description."type=stringdefault=null
}
variable"key" {
description="(required) - The secure credential's key name. Regardless of the case used in the configuration, the provider will provide an upcased key to the underlying API."type=string
}
variable"last_updated" {
description="(optional) - The time the secure credential was last updated."type=stringdefault=null
}
variable"value" {
description="(required) - The secure credential's value."type=string
}
resource"newrelic_synthetics_secure_credential""this" {
# created_at - (optional) is a type of stringcreated_at=var.created_at# description - (optional) is a type of stringdescription=var.description# key - (required) is a type of stringkey=var.key# last_updated - (optional) is a type of stringlast_updated=var.last_updated# value - (required) is a type of stringvalue=var.value
}