mirror of
https://github.com/ansible/awx.git
synced 2026-05-06 08:57:35 -02:30
Allow TLS 1.2 for Receptor connections
- Required for FIPS environment where TLS 1.3 is not supported - TLS 1.3 can still be used if the nodes both agree to use during handshake.
This commit is contained in:
@@ -2,6 +2,7 @@ receptor_user: awx
|
|||||||
receptor_group: awx
|
receptor_group: awx
|
||||||
receptor_verify: true
|
receptor_verify: true
|
||||||
receptor_tls: true
|
receptor_tls: true
|
||||||
|
receptor_mintls13: false
|
||||||
receptor_work_commands:
|
receptor_work_commands:
|
||||||
ansible-runner:
|
ansible-runner:
|
||||||
command: ansible-runner
|
command: ansible-runner
|
||||||
|
|||||||
@@ -668,6 +668,7 @@ RECEPTOR_CONFIG_STARTER = (
|
|||||||
'rootcas': '/etc/receptor/tls/ca/receptor-ca.crt',
|
'rootcas': '/etc/receptor/tls/ca/receptor-ca.crt',
|
||||||
'cert': '/etc/receptor/tls/receptor.crt',
|
'cert': '/etc/receptor/tls/receptor.crt',
|
||||||
'key': '/etc/receptor/tls/receptor.key',
|
'key': '/etc/receptor/tls/receptor.key',
|
||||||
|
'mintls13': False,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user