AD
Size: a a a
AD
AD
AD
V
A
A
vault_generic_endpoint
и что-то не выходит у меняA
A
disable_read - (Optional) True/false. Set this to true if your vault authentication is not able to read the data or if the endpoint does not support the GET method. Setting this to true will break drift detection. You should set this to true for endpoints that are write-only. Defaults to false.
A
A
disable_read = true
сломаноA
🌠
🌠
🌠
IB
resource "aws_eip_association" "aws_eip_home" {
count = "${var.application-eip != "" ? 1 : 0}"
instance_id = aws_instance.application-instance.id
allocation_id = var.application-eip
}
resource "aws_route53_record" "application-instance-home" {
zone_id = "${var.dns-zone-id}"
name = "home.${var.application-domain}"
type = "A"
ttl = "300"
records = ["${var.application-eip == "" ? aws_instance.application-instance.public_ip : aws_eip_association.aws_eip_home[0].public_ip}"]
depends_on = [
"aws_eip_association.aws_eip_home"
]
}
Р
Р
A
PD