2017-02-23 06:12:16 +01:00
|
|
|
package db
|
2016-04-04 15:44:34 +02:00
|
|
|
|
2018-03-27 22:12:47 +02:00
|
|
|
// Inventory is the model of an ansible inventory file
|
2016-04-04 15:44:34 +02:00
|
|
|
type Inventory struct {
|
|
|
|
ID int `db:"id" json:"id"`
|
2016-04-11 12:02:10 +02:00
|
|
|
Name string `db:"name" json:"name" binding:"required"`
|
2016-04-04 15:44:34 +02:00
|
|
|
ProjectID int `db:"project_id" json:"project_id"`
|
|
|
|
Inventory string `db:"inventory" json:"inventory"`
|
|
|
|
|
2016-04-08 21:41:20 +02:00
|
|
|
// accesses hosts in inventory
|
2018-03-27 22:12:47 +02:00
|
|
|
SSHKeyID *int `db:"ssh_key_id" json:"ssh_key_id"`
|
|
|
|
SSHKey AccessKey `db:"-" json:"-"`
|
2016-04-08 21:41:20 +02:00
|
|
|
|
2021-09-01 21:17:28 +02:00
|
|
|
BecomeKeyID *int `db:"become_key_id" json:"become_key_id"`
|
|
|
|
BecomeKey AccessKey `db:"-" json:"-"`
|
|
|
|
|
2021-08-30 16:24:20 +02:00
|
|
|
// static/file
|
2016-04-04 15:44:34 +02:00
|
|
|
Type string `db:"type" json:"type"`
|
2016-06-17 22:16:46 +02:00
|
|
|
|
|
|
|
Removed bool `db:"removed" json:"removed"`
|
2016-04-04 15:44:34 +02:00
|
|
|
}
|