Matt Keeler 34a32d4ce5
Remove V2 PeerName field from pbresource.Tenancy (#19865)
The peer name will eventually show up elsewhere in the resource. For now though this rips it out of where we don’t want it to be.
2024-01-29 15:08:31 -05:00

21 lines
436 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package resource
func peerNameV2ToV1(peer string) string {
// The name of the local/default peer is different between v1 and v2.
if peer == DefaultPeerName {
return ""
}
return peer
}
func peerNameV1ToV2(peer string) string {
// The name of the local/default peer is different between v1 and v2.
if peer == "" {
return DefaultPeerName
}
return peer
}