We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a73221e commit c00c0b4Copy full SHA for c00c0b4
.gitignore
@@ -31,6 +31,12 @@ main
31
# Go workspace file
32
go.work
33
34
+# Ignore MacOS files
35
+.DS_Store
36
+
37
+# Ignore goreleaser dir
38
+dist/
39
40
# End of https://www.toptal.com/developers/gitignore/api/go
41
42
.pre-commit-trivy-cache
internal/source/vmware/vmware_sync.go
@@ -1324,8 +1324,8 @@ func (vc *VmwareSource) createVmwareClusterType(nbi *inventory.NetboxInventory)
1324
NetboxObject: objects.NetboxObject{
1325
Tags: vc.Config.SourceTags,
1326
},
1327
- Name: "Vmware ESXi",
1328
- Slug: utils.Slugify("Vmware ESXi"),
+ Name: "VMware ESXi",
+ Slug: utils.Slugify("VMware ESXi"),
1329
}
1330
clusterType, err := nbi.AddClusterType(vc.Ctx, clusterType)
1331
if err != nil {
0 commit comments