Skip to content
This repository has been archived by the owner on Feb 5, 2020. It is now read-only.

Commit

Permalink
Merge pull request #3159 from coverprice/tls_fix
Browse files Browse the repository at this point in the history
modules: force etcd TLS client auth
  • Loading branch information
squat authored Apr 5, 2018
2 parents a997a2a + 1ab94f6 commit 4e4d3d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/internal-cluster/vpn.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ data "aws_ami" "openvpn_ami" {

filter {
name = "owner-id"
values = ["573553919781"]
values = ["679593333241"]
}
}

Expand Down
4 changes: 3 additions & 1 deletion modules/ignition/etcd.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ EOF

cert_options = <<EOF
--cert-file=/etc/ssl/etcd/server.crt \
--client-cert-auth=true \
--key-file=/etc/ssl/etcd/server.key \
--peer-cert-file=/etc/ssl/etcd/peer.crt \
--peer-key-file=/etc/ssl/etcd/peer.key \
--peer-trusted-ca-file=/etc/ssl/etcd/ca.crt \
--peer-client-cert-auth=trueEOF
--peer-client-cert-auth=true \
--trusted-ca-file=/etc/ssl/etcd/ca.crtEOF
}
data "template_file" "etcd_names" {
Expand Down

0 comments on commit 4e4d3d0

Please sign in to comment.