-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUpdateMB-DNSZone.ps1
55 lines (47 loc) · 1.65 KB
/
UpdateMB-DNSZone.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<#
.NOTES
===========================================================================
Created on: 13/03/2023
Created by: David Morris
Organization: East Lothian Council
Filename: UpdateMB-DNSZone.ps1
Dependencies: GetMBAuthToken module
===========================================================================
.DESCRIPTION
Example script, this will connect to the Mythic-Beasts API and update dns zone for a domain
#>
#Requires -Modules GetMBAuthToken
$domain = "example.com"
$Url = "https://api.mythic-beasts.com/dns/v2/zones/$domain/records?exclude-template&exclude-generated"
# These example DNS records create a domain that does not send email, to protect against spoofing.
$BodyofJson = '{
"records": [
{
"data": "v=DKIM1; p=",
"host": "*._domainkey",
"ttl": 300,
"type": "TXT"
},
{
"data": "v=spf1 -all",
"host": "@",
"ttl": 300,
"type": "TXT"
},
{
"data": "v=DMARC1;p=reject;",
"host": "_dmarc",
"ttl": 300,
"type": "TXT"
}
]
}'
Write-Output $BodyofJson
$Params = @{
Method = "Put"
Uri = $Url
Headers = @{'Authorization'="Bearer $token"}
Body = $BodyofJson
ContentType = "application/json"
}
Invoke-RestMethod @Params