Skip to content

Commit

Permalink
fix: enable management plugin for OCI Bastion service session to work (
Browse files Browse the repository at this point in the history
…#60)

Signed-off-by: Nikhil Kota <nikhil.kota2510@gmail.com>
  • Loading branch information
KSN2510 authored Feb 1, 2022
1 parent 95c93f4 commit 1dac894
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion compute.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ resource "oci_core_instance" "operator" {
agent_config {

are_all_plugins_disabled = false
is_management_disabled = true
is_management_disabled = false
is_monitoring_disabled = false

plugins_config {
desired_state = "ENABLED"
name = "Bastion"
}
plugins_config {
desired_state = "DISABLED"
name = "OS Management Service Agent"
}
}

compartment_id = var.compartment_id
Expand Down

0 comments on commit 1dac894

Please sign in to comment.