-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4025 from ministryofjustice/multiple-repos-and-st…
…andards-dev Create multiple repositories in test org using Terraform, which conform to moj standards
- Loading branch information
Showing
4 changed files
with
28 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 4 additions & 5 deletions
9
...aform/github/repositories/github-repos.tf → ...thub/repositories/test-repository-levg.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
module "repository" { | ||
|
||
module "test-repository-levg" { | ||
source = "github.com/ministryofjustice/operations-engineering-terraform-github-repositories" | ||
|
||
application_name = "test-app-levg" | ||
description = "this repository was create by terraform managed by operations-engineering team" | ||
name = "test-repository-levg" | ||
application_name = "test-repository-levg" | ||
description = "this repository was create by terraform managed by operations-engineering team" | ||
topics = ["github", "terraform", "operations-engineering"] | ||
tags = { | ||
Team = "operations-engineering" | ||
Phase = "POC" | ||
} | ||
topics = ["github", "terraform", "operations-engineering"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module "test-repository-levg2" { | ||
source = "github.com/ministryofjustice/operations-engineering-terraform-github-repositories" | ||
|
||
name = "test-repository-levg2" | ||
application_name = "test-repository-levg2" | ||
description = "this repository was create by terraform managed by operations-engineering team" | ||
topics = ["github", "terraform", "operations-engineering"] | ||
tags = { | ||
Team = "operations-engineering" | ||
Phase = "POC" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module "test-repository-levg3" { | ||
source = "github.com/ministryofjustice/operations-engineering-terraform-github-repositories" | ||
|
||
name = "test-repository-levg3" | ||
application_name = "test-repository-levg3" | ||
description = "this repository was create by terraform managed by operations-engineering team" | ||
topics = ["github", "terraform", "operations-engineering"] | ||
tags = { | ||
Team = "operations-engineering" | ||
Phase = "POC" | ||
} | ||
} |