Skip to content
This repository was archived by the owner on Dec 16, 2020. It is now read-only.

Commit bcd5cb8

Browse files
authored
Merge pull request #31 from gruntwork-io/yori-use-https
Update source references to use https as opposed to git@
2 parents 7f883b7 + 87660f2 commit bcd5cb8

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

examples/k8s-namespace-with-service-account/main.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ provider "kubernetes" {
2121
module "namespace" {
2222
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you
2323
# to a specific version of the modules, such as the following example:
24-
# source = "git::git@github.com:gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-namespace?ref=v0.0.1"
24+
# source = "git::https://github.com/gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-namespace?ref=v0.0.1"
2525
source = "../../modules/k8s-namespace"
2626

2727
name = "${var.name}"
@@ -34,7 +34,7 @@ module "namespace" {
3434
module "service_account_access_all" {
3535
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you
3636
# to a specific version of the modules, such as the following example:
37-
# source = "git::git@github.com:gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-service-account?ref=v0.0.1"
37+
# source = "git::https://github.com/gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-service-account?ref=v0.0.1"
3838
source = "../../modules/k8s-service-account"
3939

4040
name = "${var.name}-admin"
@@ -55,7 +55,7 @@ module "service_account_access_all" {
5555
module "service_account_access_read_only" {
5656
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you
5757
# to a specific version of the modules, such as the following example:
58-
# source = "git::git@github.com:gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-service-account?ref=v0.0.1"
58+
# source = "git::https://github.com/gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-service-account?ref=v0.0.1"
5959
source = "../../modules/k8s-service-account"
6060

6161
name = "${var.name}-read-only"

main.tf

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ provider "kubernetes" {
2222
module "tiller_namespace" {
2323
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you
2424
# to a specific version of the modules, such as the following example:
25-
# source = "git::git@github.com:gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-namespace?ref=v0.3.0"
25+
# source = "git::https://github.com/gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-namespace?ref=v0.3.0"
2626
source = "./modules/k8s-namespace"
2727

2828
name = "${var.tiller_namespace}"
@@ -31,7 +31,7 @@ module "tiller_namespace" {
3131
module "resource_namespace" {
3232
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you
3333
# to a specific version of the modules, such as the following example:
34-
# source = "git::git@github.com:gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-namespace?ref=v0.3.0"
34+
# source = "git::https://github.com/gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-namespace?ref=v0.3.0"
3535
source = "./modules/k8s-namespace"
3636

3737
name = "${var.resource_namespace}"
@@ -40,7 +40,7 @@ module "resource_namespace" {
4040
module "tiller_service_account" {
4141
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you
4242
# to a specific version of the modules, such as the following example:
43-
# source = "git::git@github.com:gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-service-account?ref=v0.3.0"
43+
# source = "git::https://github.com/gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-service-account?ref=v0.3.0"
4444
source = "./modules/k8s-service-account"
4545

4646
name = "${var.service_account_name}"
@@ -88,7 +88,7 @@ resource "null_resource" "tiller_tls_certs" {
8888
module "tiller" {
8989
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you
9090
# to a specific version of the modules, such as the following example:
91-
# source = "git::git@github.com:gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-tiller?ref=v0.3.0"
91+
# source = "git::https://github.com/gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-tiller?ref=v0.3.0"
9292
source = "./modules/k8s-tiller"
9393

9494
tiller_service_account_name = "${module.tiller_service_account.name}"

modules/k8s-namespace/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ We create the namespaces using this module:
4343

4444
```
4545
module "core_namespace" {
46-
source = "git::git@github.com:gruntwork-io/package-k8s.git//modules/k8s-namespace?ref=v0.1.0"
46+
source = "git::https://github.com/gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-namespace?ref=v0.1.0"
4747
name = "core"
4848
}
4949
5050
module "analytics_namespace" {
51-
source = "git::git@github.com:gruntwork-io/package-k8s.git//modules/k8s-namespace?ref=v0.1.0"
51+
source = "git::https://github.com/gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-namespace?ref=v0.1.0"
5252
name = "analytics"
5353
}
5454
```

modules/k8s-tiller/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ sets that you can use in the [k8s-namespace-roles module](../k8s-namespace-roles
5555

5656
```hcl
5757
module "namespace_roles" {
58-
source = "git::git@github.com:gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-namespace-roles?ref=v0.3.0"
58+
source = "git::https://github.com/gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-namespace-roles?ref=v0.3.0"
5959
6060
namespace = "kube-system"
6161
}
6262
6363
module "tiller_service_account" {
64-
source = "git::git@github.com:gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-service-account?ref=v0.3.0"
64+
source = "git::https://github.com/gruntwork-io/terraform-kubernetes-helm.git//modules/k8s-service-account?ref=v0.3.0"
6565
6666
name = "tiller"
6767
namespace = "kube-system"

0 commit comments

Comments
 (0)