Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull in resource updates from 10.9 #86

Merged
merged 1 commit into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ clientid
cloudlinux
Clw
cmek
cnames
CODENAME
codeql
computeservice
Expand Down
2 changes: 2 additions & 0 deletions docs/mql/resources/aws-pack/aws.autoscaling.group.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,5 @@ The `aws.autoscaling.group` resource provides fields representing an individual
| launchConfigurationName | string | The name of the launch configuration |
| healthCheckGracePeriod | int | The grace period in seconds before an instance with a failing health check will be replaced |
| createdAt | time | Time when the autoscaling group was created |
| maxInstanceLifetime | int | The maximum amount of time, in seconds, that an instance can be in service |
| desiredCapacity | int | The desired size of the group |
1 change: 1 addition & 0 deletions docs/mql/resources/aws-pack/aws.cloudfront.distribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ Amazon CloudFront distribution
| isIPV6Enabled | bool | Is the distribution IPV6 enabled |
| enabled | bool | Is the distribution enabled |
| priceClass | string | The price class of the distribution |
| cnames | []string | CNAMEs aliases if any for this distribution |
3 changes: 3 additions & 0 deletions docs/mql/resources/aws-pack/aws.rds.dbcluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,6 @@ The `aws.rds.dbcluster` provides fields for assessing the configuration of AWS R
| availabilityZones | []string | List of Availability Zones (AZs) where instances in the DB cluster can be created |
| port | int | The port that the database engine is listening on |
| endpoint | string | The connection endpoint for the primary instance of the DB cluster |
| hostedZoneId | string | The cluster hosted zone ID |
| masterUsername | string | The master username for the DB instance |
| latestRestorableTime | time | The latest time to which a database can be restored with point-in-time restore |
2 changes: 2 additions & 0 deletions docs/mql/resources/aws-pack/aws.rds.dbinstance.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ The `aws.rds.dbinstance` provides fields for assessing the configuration of RDS
| createdTime | time | The creation date of the RDS instance |
| port | int | The port that the DB instance listens on. If the DB instance is part of a DB cluster, this can be a different port than the DB cluster port. |
| endpoint | string | The connection endpoint for the DB instance |
| masterUsername | string | The master username for the DB instance |
| latestRestorableTime | time | The latest time to which a database can be restored with point-in-time restore |
29 changes: 15 additions & 14 deletions docs/mql/resources/core-pack/asset.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,18 @@ General asset information

**Fields**

| ID | TYPE | DESCRIPTION |
| -------- | ----------------- | -------------------------------------------------------------------------------------------------------------------------- |
| name | string | Human readable name of the asset |
| ids | []string | All identifiers for this asset |
| platform | string | Platform for this asset (redhat, windows, k8s-pod) |
| kind | string | Kind of platform, for example:, api, baremetal, vm, vm-image, container, container-image, network, ... |
| runtime | string | Runtime is the specific kind of the platform. Examples include:, docker-container, podman-container, aws-ec2-instance, ... |
| version | string | Version of the platform |
| arch | string | Architecture this OS is running on |
| title | string | Human-readable title of the platform (e.g., "Red Hat 8, Container") |
| family | []string | List of platform families that this platform belongs to |
| fqdn | string | Fully qualified domain name (optional) |
| build | string | Build version of the platform (optional) |
| labels | map[string]string | Optional platform information |
| ID | TYPE | DESCRIPTION |
| ----------- | ----------------- | -------------------------------------------------------------------------------------------------------------------------- |
| name | string | Human readable name of the asset |
| ids | []string | All identifiers for this asset |
| platform | string | Platform for this asset (redhat, windows, k8s-pod) |
| kind | string | Kind of platform, for example:, api, baremetal, vm, vm-image, container, container-image, network, ... |
| runtime | string | Runtime is the specific kind of the platform. Examples include:, docker-container, podman-container, aws-ec2-instance, ... |
| version | string | Version of the platform |
| arch | string | Architecture this OS is running on |
| title | string | Human-readable title of the platform (e.g., "Red Hat 8, Container") |
| family | []string | List of platform families that this platform belongs to |
| fqdn | string | Fully qualified domain name (optional) |
| build | string | Build version of the platform (optional) |
| labels | map[string]string | Optional platform information |
| annotations | map[string]string | Custom annotiations (tags) on the asset |
Loading