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_identity_user_capabilities_management" {
source="./modules/oci/r/oci_identity_user_capabilities_management"# can_use_api_keys - (optional) is a type of boolcan_use_api_keys=null# can_use_auth_tokens - (optional) is a type of boolcan_use_auth_tokens=null# can_use_console_password - (optional) is a type of boolcan_use_console_password=null# can_use_customer_secret_keys - (optional) is a type of boolcan_use_customer_secret_keys=null# can_use_smtp_credentials - (optional) is a type of boolcan_use_smtp_credentials=null# user_id - (required) is a type of stringuser_id=nulltimeouts=[{
create =null
delete =null
update =null
}]
}
resource"oci_identity_user_capabilities_management""this" {
# can_use_api_keys - (optional) is a type of boolcan_use_api_keys=var.can_use_api_keys# can_use_auth_tokens - (optional) is a type of boolcan_use_auth_tokens=var.can_use_auth_tokens# can_use_console_password - (optional) is a type of boolcan_use_console_password=var.can_use_console_password# can_use_customer_secret_keys - (optional) is a type of boolcan_use_customer_secret_keys=var.can_use_customer_secret_keys# can_use_smtp_credentials - (optional) is a type of boolcan_use_smtp_credentials=var.can_use_smtp_credentials# user_id - (required) is a type of stringuser_id=var.user_iddynamic"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"]
}
}
}