diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-07-08 10:54:53 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-07-08 10:54:53 -0700 |
commit | f9f64451c6398f7d9e045007583ea5fa38095097 (patch) | |
tree | 60217982202d6f718c310e273fff45de19e50c6c | |
parent | 73e51dd1411c9fe2c1018c3e4eb6961e85b23357 (diff) | |
download | chef-f9f64451c6398f7d9e045007583ea5fa38095097.tar.gz |
Add introduced field to new propertyin windows_dns_record
This will make sure the docs generate correctly
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | lib/chef/resource/windows_dns_record.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/chef/resource/windows_dns_record.rb b/lib/chef/resource/windows_dns_record.rb index c891794f42..3819802338 100644 --- a/lib/chef/resource/windows_dns_record.rb +++ b/lib/chef/resource/windows_dns_record.rb @@ -44,7 +44,8 @@ class Chef property :dns_server, String, description: "The name of the DNS server on which to create the record.", - default: "localhost" + default: "localhost", + introduced: "16.3" action :create do description "Creates and updates the DNS entry." |