Skip to content

Commit

Permalink
Better default tfvars (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
dtzar authored Jul 10, 2024
1 parent ad2d79a commit c72f7ff
Showing 1 changed file with 11 additions and 24 deletions.
35 changes: 11 additions & 24 deletions terraform/tfvars
Original file line number Diff line number Diff line change
@@ -1,45 +1,32 @@
# Sample tfvars
# Sample tfvars - rename to terraform.tfvars to use

# Azure region
region = "centralus"
location = "westus3"

# Kubernetes version
kubernetes_version = null # Defaults to latest

# GitOps Addons configuration
gitops_addons_org = "example-org"
gitops_addons_repo = "example-addons-repo"
gitops_addons_basepath = "addons"
gitops_addons_path = "path/to/addons"
gitops_addons_org = "git@github.com:myGitHubUserName"
gitops_addons_repo = "aks-platform-engineering"
gitops_addons_basepath = "gitops/"
gitops_addons_path = "bootstrap/control-plane/addons"
gitops_addons_revision = "main"

# Workload configuration
gitops_workload_org = "example-org"
gitops_workload_repo = "example-workload-repo"
gitops_workload_basepath = "workloads"
gitops_workload_path = "path/to/workloads"
gitops_workload_org = "git@github.com:myGitHubUserName"
gitops_workload_repo = "aks-platform-engineering"
gitops_workload_basepath = "gitops/"
gitops_workload_path = "bootstrap/workloads"
gitops_workload_revision = "main"

# Agents size
agents_size = "Standard_D2s_v3"

# Addons configuration
addons = {
enable_argocd = true
enable_argo_rollouts = true
enable_argo_events = true
enable_argo_workflows = true
}

# Network configuration
network = {
address_prefixes = ["10.52.0.0/16"]
service_endpoints = ["Microsoft.Storage"]
enable_kyverno = false
}

# Resource group name
resource_group_name = "aks-gitops"

# Virtual network configuration
virtual_network_address_space = ["10.52.0.0/16"]
virtual_network_name = "vnet1"

0 comments on commit c72f7ff

Please sign in to comment.