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_healthcare_dataset" {
source="./modules/google-beta/r/google_healthcare_dataset"# location - (required) is a type of stringlocation=null# name - (required) is a type of stringname=null# project - (optional) is a type of stringproject=null# time_zone - (optional) is a type of stringtime_zone=nulltimeouts=[{
create =null
delete =null
update =null
}]
}
variable"location" {
description="(required) - The location for the Dataset."type=string
}
variable"name" {
description="(required) - The resource name for the Dataset."type=string
}
variable"project" {
description="(optional)"type=stringdefault=null
}
variable"time_zone" {
description="(optional) - The default timezone used by this dataset. Must be a either a valid IANA time zone name such as\n\"America/New_York\" or empty, which defaults to UTC. This is used for parsing times in resources\n(e.g., HL7 messages) where no explicit timezone is specified."type=stringdefault=null
}
variable"timeouts" {
description="nested block: NestingSingle, min items: 0, max items: 0"type=set(object(
{
create =string
delete =string
update =string
}
))
default=[]
}
resource"google_healthcare_dataset""this" {
# location - (required) is a type of stringlocation=var.location# name - (required) is a type of stringname=var.name# project - (optional) is a type of stringproject=var.project# time_zone - (optional) is a type of stringtime_zone=var.time_zonedynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}