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"google_runtimeconfig_variable" {
source="./modules/google-beta/r/google_runtimeconfig_variable"# name - (required) is a type of stringname=null# parent - (required) is a type of stringparent=null# project - (optional) is a type of stringproject=null# text - (optional) is a type of stringtext=null# value - (optional) is a type of stringvalue=null
}
variable"name" {
description="(required) - The name of the variable to manage. Note that variable names can be hierarchical using slashes (e.g. \"prod-variables/hostname\")."type=string
}
variable"parent" {
description="(required) - The name of the RuntimeConfig resource containing this variable."type=string
}
variable"project" {
description="(optional) - The ID of the project in which the resource belongs. If it is not provided, the provider project is used."type=stringdefault=null
}
variable"text" {
description="(optional)"type=stringdefault=null
}
variable"value" {
description="(optional)"type=stringdefault=null
}
resource"google_runtimeconfig_variable""this" {
# name - (required) is a type of stringname=var.name# parent - (required) is a type of stringparent=var.parent# project - (optional) is a type of stringproject=var.project# text - (optional) is a type of stringtext=var.text# value - (optional) is a type of stringvalue=var.value
}