-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ba2db5
commit c8a0626
Showing
5 changed files
with
25 additions
and
24 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,27 +1,24 @@ | ||
variable "account_id" { | ||
type = string | ||
} | ||
|
||
variable "region" { | ||
type = string | ||
} | ||
|
||
variable "source_location" { | ||
type = string | ||
type = string | ||
description = "Your source code repo location, for example https://github.com/my/repo.git" | ||
} | ||
|
||
variable "source_name" { | ||
type = string | ||
variable "name" { | ||
type = string | ||
description = "Name used as a prefix for all resources in this module" | ||
} | ||
|
||
variable "github_personal_access_token_ssm_parameter" { | ||
type = string | ||
type = string | ||
description = "The GitHub personal access token to use for accessing the repository" | ||
} | ||
|
||
variable "vpc_id" { | ||
type = string | ||
type = string | ||
description = "The VPC ID for AWS Codebuild to launch ephemeral instances in." | ||
} | ||
|
||
variable "subnet_ids" { | ||
type = list(string) | ||
type = list(string) | ||
description = "The list of Subnet IDs for AWS Codebuild to launch ephemeral EC2 instances in." | ||
} |
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