-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move tgc handwritten resource converters to specific service packages…
… (#11864) (#2890) [upstream:7549040e0ccca64fcc2acdb964cd541a4376f88f] Signed-off-by: Modular Magician <[email protected]>
- Loading branch information
1 parent
44a352f
commit 2b54e54
Showing
43 changed files
with
221 additions
and
305 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package cai | ||
|
||
func ConvertInterfaceToStringArray(values []interface{}) []string { | ||
stringArray := make([]string, len(values)) | ||
for i, v := range values { | ||
stringArray[i] = v.(string) | ||
} | ||
return stringArray | ||
} |
105 changes: 0 additions & 105 deletions
105
tfplan2cai/converters/google/resources/firebase_project.go
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.