# ============================================================================= # OCI CIS Agent — VM Deployment Variables # ============================================================================= # Copy this file to terraform.tfvars and fill in the values. # Required values are marked with . # ============================================================================= # --- OCI Authentication --- tenancy_ocid = "" user_ocid = "" fingerprint = "" private_key_path = "" # e.g. "~/.oci/oci_api_key.pem" region = "us-ashburn-1" # --- Compartment --- compartment_ocid = "" # --- Networking (defaults are usually fine) --- # vcn_cidr = "10.0.0.0/16" # public_subnet_cidr = "10.0.1.0/24" # private_subnet_cidr = "10.0.2.0/24" # --- Compute Instance --- # instance_shape = "VM.Standard.A1.Flex" # instance_ocpus = 2 # instance_memory_gb = 16 ssh_public_key = "" # contents of ~/.ssh/id_rsa.pub # --- Block Volume --- # block_volume_size_gb = 50 # block_volume_vpus_per_gb = 20 # --- Application --- app_secret = "" # generate with: python3 -c "import secrets; print(secrets.token_hex(64))" # jwt_expiry_hours = 12 # app_timezone = "UTC" # --- OCIR --- ocir_namespace = "" # tenancy Object Storage namespace ocir_username = "" # e.g. "user@email.com" (without namespace prefix) ocir_auth_token = "" # generate in OCI Console > User Settings > Auth Tokens # ocir_repo_prefix = "oci-cis-agent" # --- Load Balancer --- # lb_min_bandwidth_mbps = 10 # lb_max_bandwidth_mbps = 100 # --- DNS (optional — leave empty to skip) --- # domain_name = "" # --- Tags --- # freeform_tags = { # "Project" = "oci-cis-agent" # "ManagedBy" = "terraform" # }