Skip to content

Commit

Permalink
Updates 'hashicorp/aws' version to '5.66.0'. Improves description for…
Browse files Browse the repository at this point in the history
… 'fully_qualified_domain_name' variable and sets 'jenkins_agent_secret_arns' default to '[]'
  • Loading branch information
gabebatista committed Sep 13, 2024
1 parent a9fae08 commit c06f047
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/jenkins/examples/complete/variables.tf
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 = []
}
2 changes: 1 addition & 1 deletion modules/jenkins/examples/complete/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.62.0"
version = "5.66.0"
}
}
}

0 comments on commit c06f047

Please sign in to comment.