Skip to content

Commit 881efd4

Browse files
committed
Update examples' source and release.sh sed
1 parent 1e37fa3 commit 881efd4

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

examples/aws/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
}
44

55
module "aws" {
6-
source = "git::ssh://[email protected]/magic_castle/slurm_cloud.git//aws"
6+
source = "git::https://github.com/ComputeCanada/magic_castle.git//aws"
77

88
cluster_name = "phoenix"
99
domain = "calculquebec.cloud"
@@ -51,7 +51,7 @@ output "public_ip" {
5151

5252
## Uncomment to register your domain name with CloudFlare
5353
# module "dns" {
54-
# source = "git::ssh://[email protected]/magic_castle/slurm_cloud.git//dns/cloudflare"
54+
# source = "git::https://github.com/ComputeCanada/magic_castle.git//dns/cloudflare"
5555
# name = module.aws.cluster_name
5656
# domain = module.aws.domain
5757
# public_ip = module.aws.ip

examples/azure/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
}
44

55
module "azure" {
6-
source = "git::ssh://[email protected]/magic_castle/slurm_cloud.git//azure"
6+
source = "git::https://github.com/ComputeCanada/magic_castle.git//azure"
77

88
cluster_name = "phoenix"
99
domain = "calculquebec.cloud"
@@ -54,7 +54,7 @@ output "public_ip" {
5454

5555
## Uncomment to register your domain name with CloudFlare
5656
# module "dns" {
57-
# source = "git::ssh://[email protected]/magic_castle/slurm_cloud.git//dns/cloudflare"
57+
# source = "git::https://github.com/ComputeCanada/magic_castle.git//dns/cloudflare"
5858
# name = module.azure.cluster_name
5959
# domain = module.azure.domain
6060
# public_ip = module.azure.ip

examples/gcp/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
}
44

55
module "gcp" {
6-
source = "git::ssh://[email protected]/magic_castle/slurm_cloud.git//gcp"
6+
source = "git::https://github.com/ComputeCanada/magic_castle.git//gcp"
77

88
cluster_name = "phoenix"
99
domain = "calculquebec.cloud"
@@ -56,7 +56,7 @@ output "public_ip" {
5656

5757
## Uncomment to register your domain name with CloudFlare
5858
# module "dns" {
59-
# source = "git::ssh://[email protected]/magic_castle/slurm_cloud.git//dns/cloudflare"
59+
# source = "git::https://github.com/ComputeCanada/magic_castle.git//dns/cloudflare"
6060
# name = module.gcp.cluster_name
6161
# domain = module.gcp.domain
6262
# public_ip = module.gcp.ip

examples/openstack/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
}
44

55
module "openstack" {
6-
source = "git::ssh://[email protected]/magic_castle/slurm_cloud.git//openstack"
6+
source = "git::https://github.com/ComputeCanada/magic_castle.git//openstack"
77

88
cluster_name = "phoenix"
99
domain = "calculquebec.cloud"
@@ -50,7 +50,7 @@ output "public_ip" {
5050

5151
## Uncomment to register your domain name with CloudFlare
5252
# module "dns" {
53-
# source = "git::ssh://[email protected]/magic_castle/slurm_cloud.git//dns/cloudflare"
53+
# source = "git::https://github.com/ComputeCanada/magic_castle.git//dns/cloudflare"
5454
# name = module.openstack.cluster_name
5555
# domain = module.openstack.domain
5656
# public_ip = module.openstack.ip

examples/ovh/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
}
44

55
module "ovh" {
6-
source = "git::ssh://[email protected]/magic_castle/slurm_cloud.git//ovh"
6+
source = "git::https://github.com/ComputeCanada/magic_castle.git//ovh"
77

88
cluster_name = "phoenix"
99
domain = "calculquebec.cloud"
@@ -50,7 +50,7 @@ output "public_ip" {
5050

5151
## Uncomment to register your domain name with CloudFlare
5252
# module "dns" {
53-
# source = "git::ssh://[email protected]/magic_castle/slurm_cloud.git//dns/cloudflare"
53+
# source = "git::https://github.com/ComputeCanada/magic_castle.git//dns/cloudflare"
5454
# name = module.ovh.cluster_name
5555
# domain = module.ovh.domain
5656
# public_ip = module.ovh.ip

release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ for provider in "${CLOUD[@]}"; do
3030
cp -rf cloud-init/*.yaml $cur_folder/$provider/cloud-init/
3131
cp -rf dns $cur_folder
3232
cp examples/$provider/main.tf $cur_folder
33-
sed -i '' 's;git::ssh://[email protected]/magic_castle/slurm_cloud.git//;./;g' $cur_folder/main.tf
33+
sed -i '' 's;git::https://github.com/ComputeCanada/magic_castle.git//;./;g' $cur_folder/main.tf
3434
sed -i '' "s;default = \"master\";default = \"$PUPPET_REV\";" $cur_folder/$provider/variables.tf
3535
cp LICENSE $cur_folder
3636
cp $provider/README.md $cur_folder

0 commit comments

Comments
 (0)