From f276e49328bc01c77490755c9858032dac87f43c Mon Sep 17 00:00:00 2001 From: Devon Crouse Date: Thu, 26 Oct 2023 11:59:25 -0600 Subject: [PATCH] docs: Add missing agent config example Signed-off-by: Devon Crouse --- .../workers/vars-workers-agent.auto.tfvars | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 examples/workers/vars-workers-agent.auto.tfvars diff --git a/examples/workers/vars-workers-agent.auto.tfvars b/examples/workers/vars-workers-agent.auto.tfvars new file mode 100644 index 00000000..101976b0 --- /dev/null +++ b/examples/workers/vars-workers-agent.auto.tfvars @@ -0,0 +1,25 @@ +# Copyright (c) 2023 Oracle Corporation and/or its affiliates. +# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl + +worker_pools = { + oke-instance = { + agent_config = { + are_all_plugins_disabled = false, + is_management_disabled = false, + is_monitoring_disabled = false, + plugins_config = { + "Bastion" = "DISABLED", + "Block Volume Management" = "DISABLED", + "Compute HPC RDMA Authentication" = "DISABLED", + "Compute HPC RDMA Auto-Configuration" = "DISABLED", + "Compute Instance Monitoring" = "ENABLED", + "Compute Instance Run Command" = "ENABLED", + "Compute RDMA GPU Monitoring" = "DISABLED", + "Custom Logs Monitoring" = "ENABLED", + "Management Agent" = "ENABLED", + "Oracle Autonomous Linux" = "DISABLED", + "OS Management Service Agent" = "DISABLED", + } + } + }, +}