missing resources
This commit is contained in:
parent
be3df2e547
commit
27dc29ce28
|
@ -18,10 +18,12 @@ func Provider() terraform.ResourceProvider {
|
|||
},
|
||||
|
||||
ResourcesMap: map[string]*schema.Resource{
|
||||
"packet_device": resourcePacketDevice(),
|
||||
"packet_ssh_key": resourcePacketSSHKey(),
|
||||
"packet_project": resourcePacketProject(),
|
||||
"packet_volume": resourcePacketVolume(),
|
||||
"packet_device": resourcePacketDevice(),
|
||||
"packet_ssh_key": resourcePacketSSHKey(),
|
||||
"packet_project": resourcePacketProject(),
|
||||
"packet_volume": resourcePacketVolume(),
|
||||
"packet_ip_address": resourcePacketIPAddress(),
|
||||
"packet_ip_reservation": resourcePacketIPReservation(),
|
||||
},
|
||||
|
||||
ConfigureFunc: providerConfigure,
|
||||
|
|
|
@ -14,8 +14,6 @@ func resourcePacketIPAddress() *schema.Resource {
|
|||
Schema: map[string]*schema.Schema{
|
||||
"address": &schema.Schema{
|
||||
Type: schema.TypeString,
|
||||
Required: true,
|
||||
Optional: true,
|
||||
Computed: true,
|
||||
},
|
||||
|
||||
|
|
|
@ -14,8 +14,6 @@ func resourcePacketIPReservation() *schema.Resource {
|
|||
Schema: map[string]*schema.Schema{
|
||||
"address": &schema.Schema{
|
||||
Type: schema.TypeString,
|
||||
Required: true,
|
||||
Optional: true,
|
||||
Computed: true,
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue