Skip to content

Commit

Permalink
chore: regenerate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
s1ntaxe770r committed Aug 10, 2024
1 parent 8eced16 commit af7eb02
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 31 deletions.
10 changes: 5 additions & 5 deletions docs/data-sources/provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ description: |-

### Required

- `name` (String) name of the qernal provider provider
- `name` (String) Name of provider

### Read-Only

- `cities` (List of String)
- `continents` (List of String) available provider locations
- `countries` (List of String)
- `id` (String) id of the provider
- `cities` (List of String) Available cities
- `continents` (List of String) Available continents
- `countries` (List of String) Available countries
- `id` (String) ID of provider
1 change: 1 addition & 0 deletions docs/data-sources/secret_certificate.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ description: |-

- `certificate` (String) Public key of the certificate
- `date` (Attributes) (see [below for nested schema](#nestedatt--date))
- `reference` (String) reference attribute of the secret
- `revision` (Number)

<a id="nestedatt--date"></a>
Expand Down
1 change: 1 addition & 0 deletions docs/data-sources/secret_environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ description: |-
### Read-Only

- `date` (Attributes) (see [below for nested schema](#nestedatt--date))
- `reference` (String) reference attribute of the secret
- `revision` (Number)
- `value` (String) Value of the environment variable

Expand Down
1 change: 1 addition & 0 deletions docs/data-sources/secret_registry.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ description: |-
### Read-Only

- `date` (Attributes) (see [below for nested schema](#nestedatt--date))
- `reference` (String) reference attribute of the secret
- `registry` (String) url of the registry
- `revision` (Number)

Expand Down
59 changes: 33 additions & 26 deletions docs/resources/function.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ description: |-

### Required

- `compliance` (List of String) Compliance standards the function adheres to, one of soc or ipv6
- `image` (String) Container image for the function.
- `name` (String) Name of the function.
- `port` (Number) Port on which the function will listen for incoming requests.
Expand All @@ -29,14 +28,15 @@ description: |-

### Optional

- `deployments` (Block List) List of deployments for the function, specifying locations and replicas. (see [below for nested schema](#nestedblock--deployments))
- `compliance` (List of String) Compliance standards the function adheres to, one of soc or ipv6
- `deployment` (Block List) List of deployments for the function, specifying locations and replicas. (see [below for nested schema](#nestedblock--deployment))
- `description` (String) A brief description of the function.
- `routes` (Block List) List of routes that define the function's endpoints. (see [below for nested schema](#nestedblock--routes))
- `secrets` (Attributes List) List of secrets used by the function. (see [below for nested schema](#nestedatt--secrets))
- `route` (Block List) List of routes that define the function's endpoints. (see [below for nested schema](#nestedblock--route))

### Read-Only

- `id` (String) Unique identifier for the function, assigned automatically upon creation.
- `revision` (String) Function revision

<a id="nestedatt--scaling"></a>
### Nested Schema for `scaling`
Expand All @@ -57,36 +57,43 @@ Required:
- `memory` (Number) Amount of memory allocated to the function.


<a id="nestedblock--deployments"></a>
### Nested Schema for `deployments`
<a id="nestedblock--deployment"></a>
### Nested Schema for `deployment`

Required:

- `location` (Attributes) Deployment location details. (see [below for nested schema](#nestedatt--deployments--location))
- `replicas` (Attributes) Replica configuration for the deployment. (see [below for nested schema](#nestedatt--deployments--replicas))
- `location` (Attributes) Deployment location details. (see [below for nested schema](#nestedatt--deployment--location))
- `replicas` (Attributes) Replica configuration for the deployment. (see [below for nested schema](#nestedatt--deployment--replicas))

Optional:

- `secrets` (Attributes) Secret to be used by the function (see [below for nested schema](#nestedatt--deployment--secrets))

<a id="nestedatt--deployments--location"></a>
### Nested Schema for `deployments.location`
<a id="nestedatt--deployment--location"></a>
### Nested Schema for `deployment.location`

Required:

- `provider_id` (String) ID of the cloud provider.

Optional:

- `city` (String) City where the deployment is located.
- `continent` (String) Continent where the deployment is located.
- `country` (String) Country where the deployment is located.
- `provider_id` (String) ID of the cloud provider.


<a id="nestedatt--deployments--replicas"></a>
### Nested Schema for `deployments.replicas`
<a id="nestedatt--deployment--replicas"></a>
### Nested Schema for `deployment.replicas`

Required:

- `affinity` (Attributes) Affinity settings for replicas. (see [below for nested schema](#nestedatt--deployments--replicas--affinity))
- `affinity` (Attributes) Affinity settings for replicas. (see [below for nested schema](#nestedatt--deployment--replicas--affinity))
- `max` (Number) Maximum number of replicas.
- `min` (Number) Minimum number of replicas.

<a id="nestedatt--deployments--replicas--affinity"></a>
### Nested Schema for `deployments.replicas.affinity`
<a id="nestedatt--deployment--replicas--affinity"></a>
### Nested Schema for `deployment.replicas.affinity`

Required:

Expand All @@ -95,21 +102,21 @@ Required:




<a id="nestedblock--routes"></a>
### Nested Schema for `routes`
<a id="nestedatt--deployment--secrets"></a>
### Nested Schema for `deployment.secrets`

Required:

- `methods` (List of String) HTTP methods supported by the route (e.g., GET, POST).
- `path` (String) Path of the route.
- `weight` (Number) Weight of the route for load balancing.
- `name` (String) Name of the secret
- `reference` (String) Reference to the secrets value


<a id="nestedatt--secrets"></a>
### Nested Schema for `secrets`

<a id="nestedblock--route"></a>
### Nested Schema for `route`

Required:

- `name` (String) Name of the secret.
- `reference` (String) Reference to the secret's value.
- `methods` (List of String) HTTP methods supported by the route (e.g., GET, POST).
- `path` (String) Path of the route.
- `weight` (Number) Weight of the route for load balancing.

0 comments on commit af7eb02

Please sign in to comment.