@@ -486,6 +486,11 @@ concourse:
486486 # #
487487 sslmode : disable
488488
489+ # # Controls how SSL encryption is negotiated with the server. (default: postgres)
490+ # # Can be set to "postgres" or "direct".
491+ # #
492+ sslNegotiation :
493+
489494 # # Dialing timeout. (0 means wait indefinitely)
490495 # #
491496 connectTimeout : 5m
@@ -723,6 +728,29 @@ concourse:
723728 # Path used to locate a vault or safe-level secret
724729 secretTemplate : concourse/{{.Secret}}
725730
731+ # # Configuration for Concourse Identity Tokens.
732+ # # Ref: https://concourse-ci.org/idtoken-credential-manager.html
733+ # #
734+ idToken :
735+ # # Configuration for the Signing Key used to sign identity tokens
736+ # # generated by Concourse.
737+ # #
738+ signingKey :
739+ # # How often to check for outdated or expired signing keys for the
740+ # # idtoken secrets provider (default: 10m)
741+ # #
742+ checkInterval :
743+
744+ # # After which time a new signing key for the idtoken secrets provider
745+ # # should be generated. 0 turns off generation of new keys (default: 168h)
746+ # #
747+ rotationPeriod :
748+
749+ # # How long a key should still be published for the idtoken secrets
750+ # # provider after a new key has been generated (default: 24h)
751+ # #
752+ gracePeriod :
753+
726754 tracing :
727755 # # Service name to attach to traces as metadata.
728756 #
@@ -1798,6 +1826,13 @@ concourse:
17981826 # # - 2.2.2.2
17991827 restrictedNetworks : []
18001828
1829+ # # List of hosts to be added to /etc/hosts file.
1830+ # # Example:
1831+ # # additionalHosts:
1832+ # # - 1.1.1.1 example.com
1833+ # # - 2.2.2.2 another.example.com
1834+ additionalHosts : []
1835+
18011836 # # Allows containers to reach host network.
18021837 allowHostAccess :
18031838
0 commit comments