- import pki, ssh, kv, rundeck engines - deploy all roles from terraform - deploy all policies from terraform - deploy all approles from terraform
15 lines
398 B
HCL
15 lines
398 B
HCL
#--------------------------------------------------------------
|
|
# rundeck
|
|
# create engine
|
|
#--------------------------------------------------------------
|
|
resource "vault_mount" "rundeck" {
|
|
path = "rundeck"
|
|
type = "kv"
|
|
max_lease_ttl_seconds = 0
|
|
external_entropy_access = false
|
|
seal_wrap = false
|
|
options = {
|
|
version = "2"
|
|
}
|
|
}
|