Skip to content

Commit

Permalink
Update env-vars
Browse files Browse the repository at this point in the history
 added useful variables to simplify deployment
  • Loading branch information
brokedba authored Nov 30, 2024
1 parent 1299159 commit 435ea60
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions terraform-provider-oci/oke-quickstartz/env-vars
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
export TF_VAR_user_ocid="ocid1.user.oc1..."
export TF_VAR_fingerprint="3b:..."
export TF_VAR_private_key_path="~/.oci/oci_api_key.pem"
export TF_VAR_tenancy_ocid="ocid1.tenancy.oc1...."
export TF_VAR_region="ca-toronto-1"
export TF_VAR_availability_domain_number="1"
export TF_VAR_ssh_public_key=$(cat ~/.ssh/id_rsa.pub)
export TF_VAR_compartment_ocid="ocid1.compartment.oc1...."
export TF_VAR_cluster_type="ENHANCED_CLUSTER"
export TF_VAR_prometheus_enabled=true
export TF_VAR_grafana_enabled=true
export TF_VAR_ingress_nginx_enabled=true
export TF_VAR_node_pool_instance_shape_1='{"instanceShape":"VM.Standard.E4.Flex","ocpus":2,"memory":16}'
export TF_VAR_node_pool_name_1="pool1" #oke_pool
export TF_VAR_node_pool_initial_num_worker_nodes_1=1
export TF_VAR_node_k8s_version="v1.30.1" # worker nodes version
export TF_VAR_k8s_version="v1.30.1" # master /control plane node version
export TF_VAR_node_pool_max_num_worker_nodes_1=3
export TF_VAR_cluster_endpoint_visibility="Public"

0 comments on commit 435ea60

Please sign in to comment.