Skip to content

Commit

Permalink
little tweaks to resource descriptions (#2872)
Browse files Browse the repository at this point in the history
  • Loading branch information
misterpantz authored Dec 18, 2023
1 parent 0611717 commit 7ef64ff
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
28 changes: 14 additions & 14 deletions providers/aws/resources/aws.lr
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private aws.vpc @defaults("id isDefault cidrBlock region") {
isDefault bool
// How instance hardware tenancy settings are enforced on instances launched in this VPC
instanceTenancy string
// Region the VPC exists in
// Region in which the VPC exists
region string
// A list of endpoints for the VPC
endpoints() []aws.vpc.endpoint
Expand Down Expand Up @@ -81,17 +81,17 @@ private aws.vpc.subnet @defaults("id cidrs availabilityZone defaultForAvailabili
arn string
// Unique ID of the subnet
id string
// A list of CIDR descriptions
// List of CIDR descriptions
cidrs string
// Indicates whether instances launched in this subnet receive a public IPv4 address
// Whether instances launched in this subnet receive public IPv4 addresses
mapPublicIpOnLaunch bool
// The availability zone where this subnet is located
availabilityZone string
// Indicates whether this is the default subnet for the availability zone
// Whether this is the default subnet for the availability zone
defaultForAvailabilityZone bool
// Whether a network interface created in this subnet (including a network interface created by RunInstances ) receives an IPv6 address.
// Whether a network interface created in this subnet (including a network interface created by RunInstances ) receives an IPv6 address
assignIpv6AddressOnCreation bool
// The state of the subnet. Pending or available
// The state of the subnet: pending or available
state string
}

Expand All @@ -101,9 +101,9 @@ private aws.vpc.endpoint @defaults("id type region") {
id string
// Type of the endpoint
type string
// VPC the endpoint exists in
// VPC in which the endpoint exists
vpc string
// Region the VPC exists in
// Region in which the VPC exists
region string
// The name of the endpoint service
serviceName string
Expand All @@ -123,9 +123,9 @@ private aws.vpc.endpoint @defaults("id type region") {
private aws.vpc.flowlog @defaults("id region status") {
// Unique ID of the flow log
id string
// VPC the flow log exists in
// VPC in which the flow log exists
vpc string
// Region the flow log exists in
// Region in which the flow log exists
region string
// Status of the flow log
status string
Expand Down Expand Up @@ -1000,13 +1000,13 @@ private aws.acm.certificate @defaults("domainName issuer createdAt notAfter") {
keyAlgorithm string
// The serial number of the certificate
serial string
// The source of the certificate. AMAZON_ISSUED or IMPORTED
// The source of the certificate: AMAZON_ISSUED or IMPORTED
source string
// The name of the certificate authority that issued and signed the certificate
issuer string
// The time at which the certificate was issued. This value exists only when the certificate source is AMAZON_ISSUED
// The time at which the certificate was issued (exists only when the certificate source is AMAZON_ISSUED)
issuedAt time
// The date and time when the certificate was imported. This value exists only when the certificate source is IMPORTED.
// The date and time when the certificate was imported (exists only when the certificate source is IMPORTED)
importedAt time
}

Expand Down Expand Up @@ -1748,7 +1748,7 @@ private aws.dynamodb.table @defaults("name region") {
id string
// The total size of the specified table, in bytes. DynamoDB updates this value approximately every six hours.
sizeBytes int
// The current state of the table. CREATING, UPDATING, DELETING, ACTIVE, INACCESSIBLE_ENCRYPTION_CREDENTIALS, ARCHIVING, or ARCHIVED.
// The current state of the table: CREATING, UPDATING, DELETING, ACTIVE, INACCESSIBLE_ENCRYPTION_CREDENTIALS, ARCHIVING, or ARCHIVED
status string
}

Expand Down
2 changes: 1 addition & 1 deletion providers/ms365/resources/ms365.lr
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private microsoft.organization @defaults("displayName") {
displayName string
// Organization verified domains
verifiedDomains []dict
// Indicates whether password hash sync is enabled for hybrid deployments
// Whether password hash sync is enabled for hybrid deployments
onPremisesSyncEnabled bool
}

Expand Down

0 comments on commit 7ef64ff

Please sign in to comment.