Skip to content
This repository was archived by the owner on Apr 14, 2024. It is now read-only.

Commit 5765fce

Browse files
authored
update tests (#2)
Signed-off-by: Carlos Santana <[email protected]>
1 parent 2afa2f8 commit 5765fce

File tree

3 files changed

+5
-30
lines changed

3 files changed

+5
-30
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ locals {
1616
name = "ex-${replace(basename(path.cwd), "_", "-")}"
1717
environment = "dev"
1818
cluster_version = "1.27"
19-
gitops_addons_url = "https://github.com/gitops-bridge-devgitops-bridge-argocd-control-plane-template"
19+
gitops_addons_url = "https://github.com/gitops-bridge-dev/gitops-bridge-argocd-control-plane-template"
2020
gitops_addons_basepath = ""
2121
gitops_addons_path = "bootstrap/control-plane/addons"
2222
gitops_addons_revision = "HEAD"

tests/complete/main.tf

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ locals {
1515
name = "ex-${replace(basename(path.cwd), "_", "-")}"
1616
environment = "dev"
1717
cluster_version = "1.27"
18-
gitops_addons_url = "${var.gitops_addons_org}/${var.gitops_addons_repo}"
19-
gitops_addons_basepath = var.gitops_addons_basepath
20-
gitops_addons_path = var.gitops_addons_path
21-
gitops_addons_revision = var.gitops_addons_revision
18+
gitops_addons_url = "https://github.com/gitops-bridge-dev/gitops-bridge-argocd-control-plane-template"
19+
gitops_addons_basepath = ""
20+
gitops_addons_path = "bootstrap/control-plane/addons"
21+
gitops_addons_revision = "HEAD"
2222

2323
oss_addons = {
2424
#enable_argo_rollouts = true

tests/complete/variables.tf

-25
Original file line numberDiff line numberDiff line change
@@ -1,25 +0,0 @@
1-
variable "gitops_addons_org" {
2-
description = "Git repository org/user contains for addons"
3-
type = string
4-
default = "https://github.com/gitops-bridge-dev"
5-
}
6-
variable "gitops_addons_repo" {
7-
description = "Git repository contains for addons"
8-
type = string
9-
default = "gitops-bridge-argocd-control-plane-template"
10-
}
11-
variable "gitops_addons_basepath" {
12-
description = "Git repository base path for addons"
13-
type = string
14-
default = ""
15-
}
16-
variable "gitops_addons_path" {
17-
description = "Git repository path for addons"
18-
type = string
19-
default = "bootstrap/control-plane/addons"
20-
}
21-
variable "gitops_addons_revision" {
22-
description = "Git repository revision/branch/ref for addons"
23-
type = string
24-
default = "HEAD"
25-
}

0 commit comments

Comments
 (0)