-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates 'hashicorp/aws' version to '5.66.0'. Improves description for…
… 'fully_qualified_domain_name' variable and sets 'jenkins_agent_secret_arns' default to '[]'
- Loading branch information
1 parent
a9fae08
commit c06f047
Showing
2 changed files
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
variable "fully_qualified_domain_name" { | ||
type = string | ||
description = "The fully qualified domain name (FQDN) to be used for jenkins" | ||
description = "A fully qualified domain name (FQDN) to be used for jenkins. A record will be created on the hosted zone with the following patterns 'jenkins.<your_fqdn>'" | ||
} | ||
|
||
variable "jenkins_agent_secret_arns" { | ||
type = list(string) | ||
description = "A list of secretmanager ARNs (wildcards allowed) that contain any secrets which need to be accessed by the Jenkins service." | ||
default = null | ||
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ terraform { | |
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = "5.62.0" | ||
version = "5.66.0" | ||
} | ||
} | ||
} |