Skip to content

Instantly share code, notes, and snippets.

@aws-joe
Created August 5, 2016 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aws-joe/806fce8e111201c13e7098e964bab248 to your computer and use it in GitHub Desktop.
Save aws-joe/806fce8e111201c13e7098e964bab248 to your computer and use it in GitHub Desktop.
$r53DataDomReg = [
'AdminContact' => [
'AddressLine1' => $address1,
'AddressLine2' => $address2,
'City' => $city,
'ContactType' => 'PERSON',
'CountryCode' => 'US',
'Email' => $email,
'Fax' => '',
'FirstName' => $firstName,
'LastName' => $lastName,
'OrganizationName' => '',
'PhoneNumber' => $phoneNumber,
'State' => $state,
'ZipCode' => $zipCode,
],
'AutoRenew' => false,
'DomainName' => $domainName,
'DurationInYears' => 1,
'PrivacyProtectAdminContact' => flase,
'PrivacyProtectRegistrantContact' => false,
'PrivacyProtectTechContact' => false,
'RegistrantContact' => [
'AddressLine1' => $address1,
'AddressLine2' => $address2,
'City' => $city,
'ContactType' => 'PERSON',
'CountryCode' => 'US',
'Email' => $email,
'Fax' => '',
'FirstName' => $firstName,
'LastName' => $lastName,
'OrganizationName' => '',
'PhoneNumber' => $phoneNumber,
'State' => $state,
'ZipCode' => $zipCode,
],
'TechContact' => [
'AddressLine1' => $address1,
'AddressLine2' => $address2,
'City' => $city,
'ContactType' => 'PERSON',
'CountryCode' => 'US',
'Email' => $email,
'Fax' => '',
'FirstName' => $firstName,
'LastName' => $lastName,
'OrganizationName' => '',
'PhoneNumber' => $phoneNumber,
'State' => $state,
'ZipCode' => $zipCode,
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment