Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
external name: added common external name configurations
Browse files Browse the repository at this point in the history
Signed-off-by: Muvaffak Onus <me@muvaf.com>
  • Loading branch information
muvaf committed Oct 20, 2021
1 parent 75c9735 commit 85b6e02
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions pkg/config/common.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
Copyright 2021 The Crossplane Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package config

// Common ExternalName configurations.
var (
// NameFromExternalName uses "name" field in the attributes as the external
// name of the resource.
NameFromExternalName = ExternalName{
SetNameAttributeFn: func(base map[string]interface{}, name string) {
base["name"] = name
},
OmittedFields: []string{
"name",
"name_prefix",
},
}

// NameFromProvider is used in resources whose identifier is assigned by
// the remote client, such as AWS VPC where it gets an identifier like
// vpc-2213das instead of letting user choose a name.
NameFromProvider = ExternalName{
SetNameAttributeFn: NopSetNameAttribute,
DisableNameInitializer: true,
}
)

0 comments on commit 85b6e02

Please sign in to comment.