We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52b5ac0 commit a77dc6bCopy full SHA for a77dc6b
argocd/schema_cluster.go
@@ -75,7 +75,9 @@ func clusterSchema() map[string]*schema.Schema {
75
Type: schema.TypeList,
76
Optional: true,
77
Description: "Arguments to pass to the command when executing it",
78
- Elem: schema.TypeString,
+ Elem: &schema.Schema{
79
+ Type: schema.TypeString,
80
+ },
81
},
82
"command": {
83
Type: schema.TypeString,
@@ -86,7 +88,9 @@ func clusterSchema() map[string]*schema.Schema {
86
88
Type: schema.TypeMap,
87
89
90
Description: "Env defines additional environment variables to expose to the process. Passed as a map of strings",
91
92
93
94
95
"install_hint": {
96
0 commit comments