gitlab_applicationgitlab_branchgitlab_commitgitlab_epicgitlab_groupgitlab_group_access_requestgitlab_group_hookgitlab_group_iterationgitlab_group_membergitlab_group_projectgitlab_group_push_rulegitlab_group_subgroupgitlab_group_variablegitlab_hookgitlab_instance_variablegitlab_issuegitlab_merge_requestgitlab_merge_request_changegitlab_my_eventgitlab_my_issuegitlab_my_projectgitlab_projectgitlab_project_access_requestgitlab_project_container_registrygitlab_project_deploymentgitlab_project_iterationgitlab_project_jobgitlab_project_membergitlab_project_pages_domaingitlab_project_pipelinegitlab_project_pipeline_detailgitlab_project_protected_branchgitlab_project_repositorygitlab_project_repository_filegitlab_project_variablegitlab_settinggitlab_snippetgitlab_usergitlab_user_eventgitlab_version
Table: gitlab_project_pages_domain
The gitlab_project_pages_domain
table can be used to query information on custom domains used for pages associated with a specific project.
However, you must specify a project_id
in the where or join clause.
Examples
List all custom pages domains for a specific project
select domain, url, certificate_expiration, certificate_expired, auto_ssl_enabledfrom gitlab_project_pages_domainwhere project_id = 1337;
Schema for gitlab_project_pages_domain
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
auto_ssl_enabled | boolean | Indicates if SSL Certificates are auto-generated for the custom pages domain. | |
certificate_expiration | timestamp with time zone | Timestamp when the certificate expires | |
certificate_expired | boolean | Indicates if the certificate has expired. | |
domain | text | The custom domain configured for the pages. | |
enabled_until | timestamp with time zone | Timestamp at which the pages domain is disabled. | |
project_id | bigint | = | The ID of the project this custom pages domain belongs to - link `gitlab_project.id`. |
url | text | The url configured for the domain (on protocol). | |
verification_code | text | The verification code associated with the pages domain. | |
verified | boolean | Indicates if the domain is verified. |