Skip to content

Commit de66100

Browse files
committed
chore: fix docs
1 parent 0638fd6 commit de66100

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

docs/data-sources/landingzone.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Read a single landing zone by identifier.
2424
- `api_version` (String) Landing Zone API version.
2525
- `kind` (String) meshObject type, always `meshLandingZone`.
2626
- `spec` (Attributes) (see [below for nested schema](#nestedatt--spec))
27+
- `status` (Attributes) Current Landing Zone status. (see [below for nested schema](#nestedatt--status))
2728

2829
<a id="nestedatt--metadata"></a>
2930
### Nested Schema for `metadata`
@@ -65,7 +66,7 @@ Optional:
6566

6667
Read-Only:
6768

68-
- `type` (String) Type of the platform. One of `aws`, `aks`, `azure`, `azurerg`, `gcp`, `kubernetes`, `openshift`.
69+
- `type` (String) Type of the platform. This field is automatically inferred from which platform configuration is provided and cannot be set manually.
6970

7071
<a id="nestedatt--spec--platform_properties--aks"></a>
7172
### Nested Schema for `spec.platform_properties.aks`
@@ -298,3 +299,13 @@ Read-Only:
298299

299300
- `kind` (String) Must always be set to meshPlatform
300301
- `uuid` (String) UUID of the platform.
302+
303+
304+
305+
<a id="nestedatt--status"></a>
306+
### Nested Schema for `status`
307+
308+
Read-Only:
309+
310+
- `disabled` (Boolean) True if the landing zone is disabled.
311+
- `restricted` (Boolean) If true, users will be unable to select this landing zone in meshPanel. Only Platform teams can create tenants using restricted landing zones with the meshObject API.

docs/data-sources/platform.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Represents a meshStack platform.
1616
data "meshstack_platform" "example" {
1717
metadata = {
1818
uuid = "d32951fc-6589-412f-b8bd-50c78fe2cb79"
19-
name = "my-platform-identifier"
2019
}
2120
}
2221
```
@@ -37,13 +36,16 @@ data "meshstack_platform" "example" {
3736
<a id="nestedatt--metadata"></a>
3837
### Nested Schema for `metadata`
3938

39+
Required:
40+
41+
- `uuid` (String) Platform UUID identifier.
42+
4043
Read-Only:
4144

4245
- `created_on` (String) Creation timestamp of the platform (server-generated).
4346
- `deleted_on` (String) Timestamp when the meshPlatform was deleted, null if not deleted.
4447
- `name` (String) Platform identifier.
4548
- `owned_by_workspace` (String) The identifier of the workspace that owns this meshPlatform.
46-
- `uuid` (String) Platform UUID identifier.
4749

4850

4951
<a id="nestedatt--spec"></a>

0 commit comments

Comments
 (0)