@@ -182,14 +182,174 @@ func resourceCloudProjectInstance() *schema.Resource {
182
182
Required : true ,
183
183
ForceNew : true ,
184
184
MaxItems : 1 ,
185
- Description : "Create network interfaces " ,
185
+ Description : "Network information " ,
186
186
Elem : & schema.Resource {
187
187
Schema : map [string ]* schema.Schema {
188
188
"public" : {
189
189
Type : schema .TypeBool ,
190
190
Description : "Set the new instance as public" ,
191
191
Optional : true ,
192
192
},
193
+ "private" : {
194
+ Type : schema .TypeSet ,
195
+ Optional : true ,
196
+ ForceNew : true ,
197
+ MaxItems : 1 ,
198
+ Description : "Private network information" ,
199
+ Elem : & schema.Resource {
200
+ Schema : map [string ]* schema.Schema {
201
+ "floating_ip" : {
202
+ Type : schema .TypeSet ,
203
+ Optional : true ,
204
+ MaxItems : 1 ,
205
+ Description : "Existing floating IP" ,
206
+ ForceNew : true ,
207
+ Elem : & schema.Resource {
208
+ Schema : map [string ]* schema.Schema {
209
+ "id" : {
210
+ Type : schema .TypeString ,
211
+ Description : "Floating IP ID" ,
212
+ Optional : true ,
213
+ },
214
+ },
215
+ },
216
+ },
217
+
218
+ "floating_ip_create" : {
219
+ Type : schema .TypeSet ,
220
+ Optional : true ,
221
+ MaxItems : 1 ,
222
+ Description : "Information to create a new floating IP" ,
223
+ ForceNew : true ,
224
+ Elem : & schema.Resource {
225
+ Schema : map [string ]* schema.Schema {
226
+ "description" : {
227
+ Type : schema .TypeString ,
228
+ Description : "Floating IP description" ,
229
+ Optional : true ,
230
+ },
231
+ },
232
+ },
233
+ },
234
+
235
+ "gateway" : {
236
+ Type : schema .TypeSet ,
237
+ Optional : true ,
238
+ MaxItems : 1 ,
239
+ Description : "Existing gateway" ,
240
+ ForceNew : true ,
241
+ Elem : & schema.Resource {
242
+ Schema : map [string ]* schema.Schema {
243
+ "id" : {
244
+ Type : schema .TypeString ,
245
+ Description : "Existing gateway ID" ,
246
+ Optional : true ,
247
+ },
248
+ },
249
+ },
250
+ },
251
+
252
+ "gateway_create" : {
253
+ Type : schema .TypeSet ,
254
+ Optional : true ,
255
+ MaxItems : 1 ,
256
+ Description : "Information to create a new gateway" ,
257
+ ForceNew : true ,
258
+ Elem : & schema.Resource {
259
+ Schema : map [string ]* schema.Schema {
260
+ "model" : {
261
+ Type : schema .TypeString ,
262
+ Description : "Gateway model" ,
263
+ Optional : true ,
264
+ ValidateFunc : helpers .ValidateEnum ([]string {"s" , "m" , "l" }),
265
+ },
266
+ "name" : {
267
+ Type : schema .TypeString ,
268
+ Description : "Gateway name" ,
269
+ Optional : true ,
270
+ },
271
+ },
272
+ },
273
+ },
274
+
275
+ "ip" : {
276
+ Type : schema .TypeString ,
277
+ Optional : true ,
278
+ Description : "Instance IP in the private network" ,
279
+ ForceNew : true ,
280
+ },
281
+
282
+ "network" : {
283
+ Type : schema .TypeSet ,
284
+ Optional : true ,
285
+ MaxItems : 1 ,
286
+ Description : "Existing private network" ,
287
+ ForceNew : true ,
288
+ Elem : & schema.Resource {
289
+ Schema : map [string ]* schema.Schema {
290
+ "id" : {
291
+ Type : schema .TypeString ,
292
+ Description : "Existing network ID" ,
293
+ Optional : true ,
294
+ },
295
+ "subnet_id" : {
296
+ Type : schema .TypeString ,
297
+ Description : "Existing subnet ID" ,
298
+ Optional : true ,
299
+ },
300
+ },
301
+ },
302
+ },
303
+
304
+ "network_create" : {
305
+ Type : schema .TypeSet ,
306
+ Optional : true ,
307
+ MaxItems : 1 ,
308
+ Description : "Information to create a new private network" ,
309
+ ForceNew : true ,
310
+ Elem : & schema.Resource {
311
+ Schema : map [string ]* schema.Schema {
312
+ "name" : {
313
+ Type : schema .TypeString ,
314
+ Description : "Network name" ,
315
+ Optional : true ,
316
+ },
317
+ "subnet" : {
318
+ Type : schema .TypeSet ,
319
+ Optional : true ,
320
+ MaxItems : 1 ,
321
+ Description : "New subnet information" ,
322
+ ForceNew : true ,
323
+ Elem : & schema.Resource {
324
+ Schema : map [string ]* schema.Schema {
325
+ "cidr" : {
326
+ Type : schema .TypeString ,
327
+ Description : "Subnet range in CIDR notation" ,
328
+ Optional : true ,
329
+ },
330
+ "enable_dhcp" : {
331
+ Type : schema .TypeBool ,
332
+ Optional : true ,
333
+ },
334
+ "ip_version" : {
335
+ Type : schema .TypeInt ,
336
+ Description : "IP version" ,
337
+ Optional : true ,
338
+ },
339
+ },
340
+ },
341
+ },
342
+ "vlan_id" : {
343
+ Type : schema .TypeInt ,
344
+ Description : "Network vlan ID" ,
345
+ Optional : true ,
346
+ },
347
+ },
348
+ },
349
+ },
350
+ },
351
+ },
352
+ },
193
353
},
194
354
},
195
355
},
@@ -252,6 +412,11 @@ func resourceCloudProjectInstance() *schema.Resource {
252
412
Description : "Instance task state" ,
253
413
Computed : true ,
254
414
},
415
+ "status" : {
416
+ Type : schema .TypeString ,
417
+ Description : "Instance status" ,
418
+ Computed : true ,
419
+ },
255
420
},
256
421
}
257
422
}
@@ -280,6 +445,10 @@ func resourceCloudProjectInstanceCreate(ctx context.Context, d *schema.ResourceD
280
445
281
446
d .SetId (instanceID )
282
447
448
+ if err := waitForCloudProjectInstance (ctx , config .OVHClient , serviceName , region , instanceID ); err != nil {
449
+ return diag .Errorf ("error waiting for instance to be ready: %s" , err )
450
+ }
451
+
283
452
return resourceCloudProjectInstanceRead (ctx , d , meta )
284
453
}
285
454
@@ -305,6 +474,7 @@ func resourceCloudProjectInstanceRead(ctx context.Context, d *schema.ResourceDat
305
474
d .Set ("image_id" , r .ImageId )
306
475
d .Set ("region" , r .Region )
307
476
d .Set ("task_state" , r .TaskState )
477
+ d .Set ("status" , r .Status )
308
478
d .Set ("id" , r .Id )
309
479
310
480
addresses := make ([]map [string ]interface {}, 0 , len (r .Addresses ))
0 commit comments