From 03f6492992ea64760cc33fb01e4fc9feec2e5557 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Gergely?= Date: Thu, 23 May 2024 07:19:30 +0200 Subject: [PATCH] CDPCP-12125 - update example docs --- .../machine_user_resource_role_assignment.md | 28 ------------------- docs/resources/ml_workspace.md | 24 ++++++++-------- 2 files changed, 12 insertions(+), 40 deletions(-) delete mode 100644 docs/resources/machine_user_resource_role_assignment.md diff --git a/docs/resources/machine_user_resource_role_assignment.md b/docs/resources/machine_user_resource_role_assignment.md deleted file mode 100644 index 57e35849..00000000 --- a/docs/resources/machine_user_resource_role_assignment.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -# generated by https://github.com/hashicorp/terraform-plugin-docs -page_title: "cdp_machine_user_resource_role_assignment Resource - terraform-provider-cdp" -subcategory: "" -description: |- - ---- - -# cdp_machine_user_resource_role_assignment (Resource) - - - - - - -## Schema - -### Required - -- `machine_user` (String) The machine user the role is assigned to. Can be the machine user’s name or CRN. -- `resource_crn` (String) The resource for which the resource role rights are granted. -- `resource_role_crn` (String) The CRN of the resource role to assign to the machine user. - -### Read-Only - -- `id` (String) The ID of this resource. - - diff --git a/docs/resources/ml_workspace.md b/docs/resources/ml_workspace.md index 30f07855..556dbf83 100644 --- a/docs/resources/ml_workspace.md +++ b/docs/resources/ml_workspace.md @@ -16,7 +16,7 @@ description: |- # # This file is licensed under the Apache License Version 2.0 (the "License"). # You may not use this file except in compliance with the License. -# You may obtain a copy of the License at http =//www.apache.org/licenses/LICENSE-2.0. +# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. # # This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS # OF ANY KIND, either express or implied. Refer to the License for the specific @@ -40,18 +40,18 @@ resource "cdp_ml_workspace" "example" { ], environment_name = var.environment_name } - - disable_tls = false - use_public_load_balancer = false - private_cluster = false - - enable_monitoring = true - enable_governance = false - enable_model_metrics = true - + + disable_tls = false + use_public_load_balancer = false + private_cluster = false + + enable_monitoring = true + enable_governance = false + enable_model_metrics = true + whitelist_authorized_ip_ranges = false - - skip_validation = false + + skip_validation = false } ```