Retrieves information about applications available for deployment when creating a Vultr VPS instance.
Get information about applications that can be launched when creating a Vultr VPS.
Get the information for an application by deploy_name
:
data "vultr_application" "docker" {
filter {
name = "deploy_name"
values = ["Docker on CentOS 7 x64"]
}
}
The following arguments are supported:
filter
- (Required) Query parameters for finding applications.The filter
block supports the following:
name
- Attribute name to filter with.values
- One or more values filter with.The following attributes are exported:
name
- The name of the application.deploy_name
- The deploy name of the application.short_name
- The short name of the application.vendor
- The vendor who authored the application.type
- This defines if an application is one-click
or marketplace
.image_id
- The Marketplace ID for this application.
No comments yet.