inspec/test/kitchen/cookbooks/os_prepare/recipes/x509.rb
Miah Johnson 97a258ae69 Use a more obvious directory structure for kitchen testing
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-10-16 22:41:03 -07:00

15 lines
276 B
Ruby

if node["platform_family"] != "windows"
openssl_x509_certificate "/tmp/mycert.pem" do
common_name "www.f00bar.com"
org "Foo Bar"
org_unit "Lab"
country "US"
expire 360
end
openssl_rsa_private_key "/tmp/server.key" do
key_length 2048
end
end