gray-sandwich-51355
05/02/2023, 1:03 PMpulumi upconst googleDomainUrl = pulumi.interpolate `<https://domains.google.com/nic/update?hostname=${mydomain}&myip=${ip.address}>`;
const options =
        {
            method: 'POST',
            headers: {
                'User-Agent': 'Pulumi',
                'Authorization': `Basic ${Buffer.from(`${googleDomainUser}:${googleDomainPass}`).toString('base64')}`
            }
        }
let response = googleDomainUrl.apply(url => fetch(url, options))