Skip to content

Commit a80f83b

Browse files
tresnipatryk
authored andcommitted
Add 'zone delete' command to flarectl (cloudflare#345)
1 parent 4370482 commit a80f83b

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

cmd/flarectl/flarectl.go

+11
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,17 @@ func main() {
9393
},
9494
},
9595
},
96+
{
97+
Name: "delete",
98+
Action: zoneDelete,
99+
Usage: "Delete a zone",
100+
Flags: []cli.Flag{
101+
cli.StringFlag{
102+
Name: "zone",
103+
Usage: "zone name",
104+
},
105+
},
106+
},
96107
{
97108
Name: "check",
98109
Action: zoneCheck,

cmd/flarectl/zone.go

+18
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,24 @@ func zoneList(c *cli.Context) {
8080
writeTable(output, "ID", "Name", "Plan", "Status")
8181
}
8282

83+
func zoneDelete(c *cli.Context) {
84+
if err := checkFlags(c, "zone"); err != nil {
85+
return
86+
}
87+
88+
zoneID, err := api.ZoneIDByName(c.String("zone"))
89+
if err != nil {
90+
fmt.Fprintln(os.Stderr, err)
91+
return
92+
}
93+
94+
_, err = api.DeleteZone(zoneID)
95+
if err != nil {
96+
fmt.Fprintln(os.Stderr, fmt.Sprintf("%s", err))
97+
return
98+
}
99+
}
100+
83101
func zoneCreateLockdown(c *cli.Context) {
84102
if err := checkFlags(c, "zone", "urls", "targets", "values"); err != nil {
85103
return

0 commit comments

Comments
 (0)