Re: [Openstack] [heat][Designate] Struggling to create DNS records for created instances

2017-07-24 Thread Kaz Shinohara
Hi Lance, Good to hear, you could find the cause :) Regards, Kaz 2017-07-24 16:12 GMT+09:00 Lance Haig : > Hi Kaz, > > Thanks for responding. > > I found my mistake the Designate Resource requires that the name provided be > a FQDN > > I was just passing in the name. > > I

Re: [Openstack] [heat][Designate] Struggling to create DNS records for created instances

2017-07-24 Thread Lance Haig
Hi Kaz, Thanks for responding. I found my mistake the Designate Resource requires that the name provided be a FQDN I was just passing in the name. I should look like this instance_record: type: OS::Designate::Record properties: data: { get_attr: [ instance, first_address ] }

Re: [Openstack] [heat][Designate] Struggling to create DNS records for created instances

2017-07-21 Thread Kaz Shinohara
Hi Lance, Just a quick question, have you tried "depends_on" ? Also looks the error what you got indicates your posted properties for "instance_record" includes not supported one. Regards, Kaz On Jul 22, 2017 1:19 AM, "Lance Haig" wrote: Hi, I have the following

[Openstack] [heat][Designate] Struggling to create DNS records for created instances

2017-07-21 Thread Lance Haig
Hi, I have the following instance code server1: type: OS::Nova::Server properties: name: Server1 image: { get_param: image } flavor: { get_param: flavor } key_name: { get_param: key_name } networks: - port: { get_resource: server1_port } and I am trying to