-
Notifications
You must be signed in to change notification settings - Fork 6
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 #90 from ministryofjustice/add-tags
Add tags
- Loading branch information
Showing
8 changed files
with
143 additions
and
55 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
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
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,56 +1,37 @@ | ||
/* | ||
* When using this module through the cloud-platform-environments, | ||
* the next 3 variables are automatically supplied by the pipeline. | ||
* | ||
*/ | ||
variable "cluster_name" {} | ||
|
||
variable "kubernetes_cluster" {} | ||
|
||
variable "application" { | ||
description = "Name of Application you are deploying" | ||
default = "example-app" | ||
variable "business_unit" { | ||
default = "Platforms" | ||
} | ||
|
||
variable "namespace" { | ||
default = "example-team" | ||
variable "application" { | ||
default = "cloud-platform-terraform-ecr-credentials example module" | ||
} | ||
|
||
variable "business_unit" { | ||
description = "Area of the MOJ responsible for the service." | ||
default = "Example" | ||
variable "is_production" { | ||
default = "false" | ||
} | ||
|
||
variable "team_name" { | ||
description = "The name of your development team" | ||
default = "example" | ||
default = "webops" | ||
} | ||
|
||
variable "environment_name" { | ||
description = "The type of environment you're deploying to." | ||
default = "development" | ||
} | ||
|
||
variable "infrastructure_support" { | ||
description = "The team responsible for managing the infrastructure. Should be of the form team-email." | ||
default = "[email protected]" | ||
variable "namespace" { | ||
default = "cloud-platform-terraform-ecr-credentials-example-module" | ||
} | ||
|
||
variable "is_production" { | ||
default = "false" | ||
variable "environment" { | ||
default = "non-production" | ||
} | ||
|
||
variable "slack_channel" { | ||
description = "Team slack channel to use if we need to contact your team" | ||
default = "example" | ||
variable "infrastructure_support" { | ||
default = "Cloud Platform" | ||
} | ||
|
||
variable "github_owner" { | ||
description = "Required by the github terraform provider" | ||
description = "Required by the GitHub terraform provider" | ||
default = "ministryofjustice" | ||
} | ||
|
||
variable "github_token" { | ||
description = "Required by the github terraform provider" | ||
description = "Required by the GitHub terraform provider" | ||
default = "" | ||
} | ||
} |
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
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
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,37 @@ | ||
variable "business_unit" { | ||
default = "Platforms" | ||
} | ||
|
||
variable "application" { | ||
default = "cloud-platform-terraform-ecr-credentials example module" | ||
} | ||
|
||
variable "is_production" { | ||
default = "false" | ||
} | ||
|
||
variable "team_name" { | ||
default = "webops" | ||
} | ||
|
||
variable "namespace" { | ||
default = "cloud-platform-terraform-ecr-credentials-example-module" | ||
} | ||
|
||
variable "environment" { | ||
default = "non-production" | ||
} | ||
|
||
variable "infrastructure_support" { | ||
default = "Cloud Platform" | ||
} | ||
|
||
variable "github_owner" { | ||
description = "Required by the GitHub terraform provider" | ||
default = "ministryofjustice" | ||
} | ||
|
||
variable "github_token" { | ||
description = "Required by the GitHub terraform provider" | ||
default = "" | ||
} |
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,9 +1,9 @@ | ||
terraform { | ||
required_version = ">= 1.2.5" | ||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 5.0.0" | ||
version = ">= 4.0.0" | ||
} | ||
} | ||
required_version = ">= 1.2.5" | ||
} |
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