diff options
author | Tim Smith <tsmith@chef.io> | 2020-07-08 11:14:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-08 11:14:49 -0700 |
commit | 68c6d41f369eb0d1569d3248fecad4b456058d13 (patch) | |
tree | b5de0383af2dcb1ef3478f04578181fdc2a3786e /lib | |
parent | 42add873bf2d0ba8d931121af05d302cd9647b68 (diff) | |
parent | f9f64451c6398f7d9e045007583ea5fa38095097 (diff) | |
download | chef-68c6d41f369eb0d1569d3248fecad4b456058d13.tar.gz |
Merge pull request #10132 from chef/introduced
Add introduced field to new propertyin windows_dns_record
Diffstat (limited to 'lib')
-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." |