Skip to content

Commit

Permalink
feat: [PL-49333]: Support Secret for Custom Secret Manager (#523)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarthak S authored Apr 29, 2024
1 parent adc6e53 commit 9f69df9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions harness/nextgen/enum_secret_text_value_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ package nextgen
type SecretTextValueType string

var SecretTextValueTypes = struct {
Inline SecretTextValueType
Reference SecretTextValueType
Inline SecretTextValueType
Reference SecretTextValueType
CustomSecretManagerValues SecretTextValueType
}{
Inline: "Inline",
Reference: "Reference",
Inline: "Inline",
Reference: "Reference",
CustomSecretManagerValues: "CustomSecretManagerValues",
}

var SecretTextValueTypeValues = []string{
Expand Down

0 comments on commit 9f69df9

Please sign in to comment.