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"oci_apigateway_certificate" {
source="./modules/oci/r/oci_apigateway_certificate"# certificate - (required) is a type of stringcertificate=null# compartment_id - (required) is a type of stringcompartment_id=null# defined_tags - (optional) is a type of map of stringdefined_tags={}
# display_name - (optional) is a type of stringdisplay_name=null# freeform_tags - (optional) is a type of map of stringfreeform_tags={}
# intermediate_certificates - (optional) is a type of stringintermediate_certificates=null# private_key - (required) is a type of stringprivate_key=nulltimeouts=[{
create =null
delete =null
update =null
}]
}
resource"oci_apigateway_certificate""this" {
# certificate - (required) is a type of stringcertificate=var.certificate# compartment_id - (required) is a type of stringcompartment_id=var.compartment_id# defined_tags - (optional) is a type of map of stringdefined_tags=var.defined_tags# display_name - (optional) is a type of stringdisplay_name=var.display_name# freeform_tags - (optional) is a type of map of stringfreeform_tags=var.freeform_tags# intermediate_certificates - (optional) is a type of stringintermediate_certificates=var.intermediate_certificates# private_key - (required) is a type of stringprivate_key=var.private_keydynamic"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"]
}
}
}