control_plane_acl
Creates, updates, deletes, gets or lists a control_plane_acl resource.
Overview
| Name | control_plane_acl |
| Type | Resource |
| Id | linode.lke.control_plane_acl |
Fields
The following fields are returned by SELECT queries:
- get_lke_cluster_acl
Returns a single cluster's control plane access control list. The optional field revision-id provided will be reflected on GET response when (and only after) the ACL stanza is verified as enforced.
| Name | Datatype | Description |
|---|---|---|
addresses | object | |
revision-id | |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_lke_cluster_acl | select | Get a specific cluster's control plane access control List. Learn more... Learn more... | ||
put_lke_cluster_acl | replace | Updates a specific cluster's control plane access control list. Learn more... Learn more... | ||
delete_lke_cluster_acl | delete | Disable control plane access controls and deletes all rules. This has the same effect as calling PUT with an acl json map value of {“enabled” : false}.Learn more... Learn more... |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|
SELECT examples
- get_lke_cluster_acl
Get a specific cluster's control plane access control List.
Learn more...
Learn more...
SELECT
addresses,
revision-id
FROM linode.lke.control_plane_acl
;
REPLACE examples
- put_lke_cluster_acl
Updates a specific cluster's control plane access control list.
Learn more...
Learn more...
REPLACE linode.lke.control_plane_acl
SET
data__acl = '{{ acl }}'
RETURNING
acl;
DELETE examples
- delete_lke_cluster_acl
Disable control plane access controls and deletes all rules. This has the same effect as calling PUT with an acl json map value of {“enabled” : false}.
Learn more...
Learn more...
DELETE FROM linode.lke.control_plane_acl
;