Skip to content

Commit

Permalink
Fix variables to enable/disable crossplane components (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
zioproto authored Mar 5, 2024
1 parent 719dee4 commit 41f9a28
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ spec:
- key: akuity.io/argo-cd-cluster-name
operator: NotIn
values: [in-cluster]
- key: enable_crossplane
operator: In
values: ['true']
- clusters:
selector:
matchLabels:
Expand Down
1 change: 0 additions & 1 deletion terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ locals {
argocd_namespace = "argocd"

azure_addons = {
enable_azure_crossplane_provider = try(var.addons.enable_azure_crossplane_provider, false)
enable_azure_crossplane_upbound_provider = try(var.addons.enable_azure_crossplane_upbound_provider, false)
}
oss_addons = {
Expand Down
1 change: 0 additions & 1 deletion terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ variable "addons" {
default = {
enable_argocd = true # installs argocd
enable_crossplane = true # installs crossplane core
enable_azure_crossplane_provider = true # installs azure contrib provider
enable_azure_crossplane_upbound_provider = true # installs azure upbound provider
}
}
Expand Down

0 comments on commit 41f9a28

Please sign in to comment.