turbot/digitalocean
steampipe plugin install digitalocean

Table: digitalocean_app - Query DigitalOcean Apps using SQL

DigitalOcean App Platform is a Platform as a Service (PaaS) offering that allows developers to publish code directly to DigitalOcean servers without worrying about the underlying infrastructure. The service automatically analyzes the code, creates containers, and runs them on Kubernetes clusters. It supports several programming languages and frameworks and offers built-in database and caching for high scalability.

Table Usage Guide

The digitalocean_app table provides insights into Apps deployed on the DigitalOcean App Platform. As a developer or DevOps engineer, explore app-specific details through this table, including the app's ID, name, live URL, active deployment and region. Utilize it to monitor and manage the apps deployed on DigitalOcean, and to ensure the smooth operation and performance of your applications.

Examples

Basic info

Explore the basic information about your DigitalOcean applications, such as their unique identifiers and creation dates, to gain a better understanding of your resources. This can be particularly useful for auditing purposes or when planning resource management strategies.

select
id,
name,
urn,
created_at
from
digitalocean_app;
select
id,
name,
urn,
created_at
from
digitalocean_app;

Schema for digitalocean_app

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
active_deploymentjsonbThe app's currently active deployment.
akasjsonbArray of globally unique identifier strings (also known as) for the resource.
created_attimestamp with time zoneTime when the app was created.
idtext=The id of the app.
in_progress_deploymentjsonbIn progress deployment of the app.
last_deployment_created_attimestamp with time zoneTime when the app last deployed.
live_domaintextThe live domain of the app.
live_urltextThe live URL of the app.
live_url_basetextThe live URL base of the app.
nametextThe name of the app
owner_uuidtextOwnerUUID of the app.
regionjsonbThe DigitalOcean data center region hosting the app.
specjsonbA DigitalOcean App spec describing the app.
tier_slugtextTier slug of the app
titletextTitle of the resource.
updated_attimestamp with time zoneTime when the app was updated.
urntextThe uniform resource name (URN) for the app.