Skip to content

Commit 698d431

Browse files
committed
rename silinternational to sil-org
1 parent 0e65976 commit 698d431

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 SIL International
3+
Copyright (c) 2023 SIL Global
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ health_check = {
4444

4545
## Example
4646

47-
A working [example](https://github.com/silinternational/terraform-aws-ecs-app/tree/main/test) usage of this module is included in the source repository.
47+
A working [example](https://github.com/sil-org/terraform-aws-ecs-app/tree/main/test) usage of this module is included in the source repository.
4848

4949
## More info
5050

51-
More information is available at the [Terraform Registry](https://registry.terraform.io/modules/silinternational/ecs-app/aws/latest)
51+
More information is available at the [Terraform Registry](https://registry.terraform.io/modules/sil-org/ecs-app/aws/latest)

main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ resource "aws_alb_listener_rule" "tg" {
152152
module "ecs-service-cloudwatch-dashboard" {
153153
count = var.create_dashboard ? 1 : 0
154154

155-
source = "silinternational/ecs-service-cloudwatch-dashboard/aws"
155+
source = "sil-org/ecs-service-cloudwatch-dashboard/aws"
156156
version = "~> 3.1"
157157

158158
cluster_name = module.ecsasg.ecs_cluster_name
@@ -210,7 +210,7 @@ resource "aws_db_instance" "this" {
210210
*/
211211
module "adminer" {
212212
count = var.create_adminer ? 1 : 0
213-
source = "silinternational/adminer/aws"
213+
source = "sil-org/adminer/aws"
214214
version = "~> 1.1"
215215

216216
adminer_default_server = aws_db_instance.this.address
@@ -230,7 +230,7 @@ module "adminer" {
230230
* Create new ecs service
231231
*/
232232
module "ecs" {
233-
source = "github.com/silinternational/terraform-modules//aws/ecs/service-only?ref=8.13.3"
233+
source = "github.com/sil-org/terraform-modules//aws/ecs/service-only?ref=8.13.3"
234234
cluster_id = module.ecsasg.ecs_cluster_id
235235
service_name = var.app_name
236236
service_env = local.app_env

vpc.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Create VPC
44
*/
55
module "vpc" {
6-
source = "silinternational/vpc/aws"
6+
source = "sil-org/vpc/aws"
77
version = "~> 1.0"
88

99
app_name = var.app_name
@@ -16,7 +16,7 @@ module "vpc" {
1616
* Security group to limit traffic to Cloudflare IPs
1717
*/
1818
module "cloudflare-sg" {
19-
source = "github.com/silinternational/terraform-modules//aws/cloudflare-sg?ref=8.13.3"
19+
source = "github.com/sil-org/terraform-modules//aws/cloudflare-sg?ref=8.13.3"
2020
vpc_id = module.vpc.id
2121
}
2222

@@ -92,7 +92,7 @@ data "aws_acm_certificate" "default" {
9292
* Create application load balancer for public access
9393
*/
9494
module "alb" {
95-
source = "silinternational/alb/aws"
95+
source = "sil-org/alb/aws"
9696
version = "~> 1.1"
9797

9898
app_name = var.app_name
@@ -109,10 +109,10 @@ module "alb" {
109109

110110
/*
111111
* Create ECS Cluster and Auto-Scaling Group
112-
* https://registry.terraform.io/modules/silinternational/ecs-asg/aws
112+
* https://registry.terraform.io/modules/sil-org/ecs-asg/aws
113113
*/
114114
module "ecsasg" {
115-
source = "silinternational/ecs-asg/aws"
115+
source = "sil-org/ecs-asg/aws"
116116
version = "~> 4.1"
117117

118118
cluster_name = local.app_name_and_env

0 commit comments

Comments
 (0)