You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MarkdownDescription: "The production branch for the app. Used for git-based deployments.",
139
139
Optional: true,
140
+
Computed: true,
140
141
},
141
142
142
143
// Spicepod configuration
143
144
"spicepod": schema.StringAttribute{
144
145
MarkdownDescription: "The spicepod configuration as a YAML or JSON string. This defines the datasets, models, and other spicepod settings for the app.",
145
146
Optional: true,
147
+
Computed: true,
146
148
},
147
149
148
150
// Runtime configuration attributes
149
151
"image_tag": schema.StringAttribute{
150
152
MarkdownDescription: "The Spice.ai runtime image tag to use for deployments (e.g., `latest`, `v0.18.0`).",
151
153
Optional: true,
154
+
Computed: true,
152
155
},
153
156
"replicas": schema.Int64Attribute{
154
157
MarkdownDescription: "The number of replicas for the app. Must be between 1 and 10.",
155
158
Optional: true,
159
+
Computed: true,
156
160
Validators: []validator.Int64{
157
161
int64validator.Between(1, 10),
158
162
},
159
163
},
160
164
"node_group": schema.StringAttribute{
161
165
MarkdownDescription: "The node group for the app deployment.",
162
166
Optional: true,
167
+
Computed: true,
163
168
},
164
169
"region": schema.StringAttribute{
165
170
MarkdownDescription: "The region for the app deployment.",
166
171
Optional: true,
172
+
Computed: true,
167
173
},
168
174
"storage_claim_size_gb": schema.Float64Attribute{
169
175
MarkdownDescription: "The storage claim size in GB for the app.",
0 commit comments