The resource work_pool_access represents a connection between an accessor (User, Service Account or Team) with a Work Pool. This resource specifies an actor’s access level to a specific Work Pool in the Account. For more information, see object access control lists.
This feature is available in the following product plan(s): Pro, Enterprise.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as prefect from "@pulumi/prefect";
// All work pools are scoped to a Workspace.
const test = prefect.getWorkspace({
handle: "my-workspace",
});
// Be sure to grant all Actors/Teams who need Work Pool access to first be
// invited to the Workspace (with a role).
const developer = prefect.getWorkspaceRole({
name: "Developer",
});
// Example: invite a Service Account to the Workspace and grant it Developer access
const testServiceAccount = new prefect.ServiceAccount("test", {name: "my-service-account"});
const testWorkspaceAccess = new prefect.WorkspaceAccess("test", {
accessorType: "SERVICE_ACCOUNT",
accessorId: testServiceAccount.id,
workspaceRoleId: developer.then(developer => developer.id),
workspaceId: test.then(test => test.id),
});
// Example: invite a Team to the Workspace and grant it Developer access
const testGetTeam = prefect.getTeam({
name: "my-team",
});
const testTeam = new prefect.WorkspaceAccess("test_team", {
accessorType: "TEAM",
accessorId: testGetTeam.then(testGetTeam => testGetTeam.id),
workspaceRoleId: developer.then(developer => developer.id),
workspaceId: test.then(test => test.id),
});
// Define the Work Pool and grant access to the Work Pool
const testWorkPool = new prefect.WorkPool("test", {
name: "my-work-pool",
workspaceId: test.then(test => test.id),
});
const testWorkPoolAccess = new prefect.WorkPoolAccess("test", {
workspaceId: test.then(test => test.id),
workPoolName: testWorkPool.name,
manageActorIds: [testServiceAccount.actorId],
runActorIds: [testServiceAccount.actorId],
viewActorIds: [testServiceAccount.actorId],
manageTeamIds: [testGetTeam.then(testGetTeam => testGetTeam.id)],
runTeamIds: [testGetTeam.then(testGetTeam => testGetTeam.id)],
viewTeamIds: [testGetTeam.then(testGetTeam => testGetTeam.id)],
});
import pulumi
import pulumi_prefect as prefect
# All work pools are scoped to a Workspace.
test = prefect.get_workspace(handle="my-workspace")
# Be sure to grant all Actors/Teams who need Work Pool access to first be
# invited to the Workspace (with a role).
developer = prefect.get_workspace_role(name="Developer")
# Example: invite a Service Account to the Workspace and grant it Developer access
test_service_account = prefect.ServiceAccount("test", name="my-service-account")
test_workspace_access = prefect.WorkspaceAccess("test",
accessor_type="SERVICE_ACCOUNT",
accessor_id=test_service_account.id,
workspace_role_id=developer.id,
workspace_id=test.id)
# Example: invite a Team to the Workspace and grant it Developer access
test_get_team = prefect.get_team(name="my-team")
test_team = prefect.WorkspaceAccess("test_team",
accessor_type="TEAM",
accessor_id=test_get_team.id,
workspace_role_id=developer.id,
workspace_id=test.id)
# Define the Work Pool and grant access to the Work Pool
test_work_pool = prefect.WorkPool("test",
name="my-work-pool",
workspace_id=test.id)
test_work_pool_access = prefect.WorkPoolAccess("test",
workspace_id=test.id,
work_pool_name=test_work_pool.name,
manage_actor_ids=[test_service_account.actor_id],
run_actor_ids=[test_service_account.actor_id],
view_actor_ids=[test_service_account.actor_id],
manage_team_ids=[test_get_team.id],
run_team_ids=[test_get_team.id],
view_team_ids=[test_get_team.id])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/prefect/v2/prefect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// All work pools are scoped to a Workspace.
test, err := prefect.LookupWorkspace(ctx, &prefect.LookupWorkspaceArgs{
Handle: pulumi.StringRef("my-workspace"),
}, nil)
if err != nil {
return err
}
// Be sure to grant all Actors/Teams who need Work Pool access to first be
// invited to the Workspace (with a role).
developer, err := prefect.LookupWorkspaceRole(ctx, &prefect.LookupWorkspaceRoleArgs{
Name: "Developer",
}, nil)
if err != nil {
return err
}
// Example: invite a Service Account to the Workspace and grant it Developer access
testServiceAccount, err := prefect.NewServiceAccount(ctx, "test", &prefect.ServiceAccountArgs{
Name: pulumi.String("my-service-account"),
})
if err != nil {
return err
}
_, err = prefect.NewWorkspaceAccess(ctx, "test", &prefect.WorkspaceAccessArgs{
AccessorType: pulumi.String("SERVICE_ACCOUNT"),
AccessorId: testServiceAccount.ID(),
WorkspaceRoleId: pulumi.String(developer.Id),
WorkspaceId: pulumi.String(test.Id),
})
if err != nil {
return err
}
// Example: invite a Team to the Workspace and grant it Developer access
testGetTeam, err := prefect.LookupTeam(ctx, &prefect.LookupTeamArgs{
Name: pulumi.StringRef("my-team"),
}, nil)
if err != nil {
return err
}
_, err = prefect.NewWorkspaceAccess(ctx, "test_team", &prefect.WorkspaceAccessArgs{
AccessorType: pulumi.String("TEAM"),
AccessorId: pulumi.String(testGetTeam.Id),
WorkspaceRoleId: pulumi.String(developer.Id),
WorkspaceId: pulumi.String(test.Id),
})
if err != nil {
return err
}
// Define the Work Pool and grant access to the Work Pool
testWorkPool, err := prefect.NewWorkPool(ctx, "test", &prefect.WorkPoolArgs{
Name: pulumi.String("my-work-pool"),
WorkspaceId: pulumi.String(test.Id),
})
if err != nil {
return err
}
_, err = prefect.NewWorkPoolAccess(ctx, "test", &prefect.WorkPoolAccessArgs{
WorkspaceId: pulumi.String(test.Id),
WorkPoolName: testWorkPool.Name,
ManageActorIds: pulumi.StringArray{
testServiceAccount.ActorId,
},
RunActorIds: pulumi.StringArray{
testServiceAccount.ActorId,
},
ViewActorIds: pulumi.StringArray{
testServiceAccount.ActorId,
},
ManageTeamIds: pulumi.StringArray{
pulumi.String(testGetTeam.Id),
},
RunTeamIds: pulumi.StringArray{
pulumi.String(testGetTeam.Id),
},
ViewTeamIds: pulumi.StringArray{
pulumi.String(testGetTeam.Id),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Prefect = Pulumi.Prefect;
return await Deployment.RunAsync(() =>
{
// All work pools are scoped to a Workspace.
var test = Prefect.GetWorkspace.Invoke(new()
{
Handle = "my-workspace",
});
// Be sure to grant all Actors/Teams who need Work Pool access to first be
// invited to the Workspace (with a role).
var developer = Prefect.GetWorkspaceRole.Invoke(new()
{
Name = "Developer",
});
// Example: invite a Service Account to the Workspace and grant it Developer access
var testServiceAccount = new Prefect.ServiceAccount("test", new()
{
Name = "my-service-account",
});
var testWorkspaceAccess = new Prefect.WorkspaceAccess("test", new()
{
AccessorType = "SERVICE_ACCOUNT",
AccessorId = testServiceAccount.Id,
WorkspaceRoleId = developer.Apply(getWorkspaceRoleResult => getWorkspaceRoleResult.Id),
WorkspaceId = test.Apply(getWorkspaceResult => getWorkspaceResult.Id),
});
// Example: invite a Team to the Workspace and grant it Developer access
var testGetTeam = Prefect.GetTeam.Invoke(new()
{
Name = "my-team",
});
var testTeam = new Prefect.WorkspaceAccess("test_team", new()
{
AccessorType = "TEAM",
AccessorId = testGetTeam.Apply(getTeamResult => getTeamResult.Id),
WorkspaceRoleId = developer.Apply(getWorkspaceRoleResult => getWorkspaceRoleResult.Id),
WorkspaceId = test.Apply(getWorkspaceResult => getWorkspaceResult.Id),
});
// Define the Work Pool and grant access to the Work Pool
var testWorkPool = new Prefect.WorkPool("test", new()
{
Name = "my-work-pool",
WorkspaceId = test.Apply(getWorkspaceResult => getWorkspaceResult.Id),
});
var testWorkPoolAccess = new Prefect.WorkPoolAccess("test", new()
{
WorkspaceId = test.Apply(getWorkspaceResult => getWorkspaceResult.Id),
WorkPoolName = testWorkPool.Name,
ManageActorIds = new[]
{
testServiceAccount.ActorId,
},
RunActorIds = new[]
{
testServiceAccount.ActorId,
},
ViewActorIds = new[]
{
testServiceAccount.ActorId,
},
ManageTeamIds = new[]
{
testGetTeam.Apply(getTeamResult => getTeamResult.Id),
},
RunTeamIds = new[]
{
testGetTeam.Apply(getTeamResult => getTeamResult.Id),
},
ViewTeamIds = new[]
{
testGetTeam.Apply(getTeamResult => getTeamResult.Id),
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.prefect.PrefectFunctions;
import com.pulumi.prefect.inputs.GetWorkspaceArgs;
import com.pulumi.prefect.inputs.GetWorkspaceRoleArgs;
import com.pulumi.prefect.ServiceAccount;
import com.pulumi.prefect.ServiceAccountArgs;
import com.pulumi.prefect.WorkspaceAccess;
import com.pulumi.prefect.WorkspaceAccessArgs;
import com.pulumi.prefect.inputs.GetTeamArgs;
import com.pulumi.prefect.WorkPool;
import com.pulumi.prefect.WorkPoolArgs;
import com.pulumi.prefect.WorkPoolAccess;
import com.pulumi.prefect.WorkPoolAccessArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
// All work pools are scoped to a Workspace.
final var test = PrefectFunctions.getWorkspace(GetWorkspaceArgs.builder()
.handle("my-workspace")
.build());
// Be sure to grant all Actors/Teams who need Work Pool access to first be
// invited to the Workspace (with a role).
final var developer = PrefectFunctions.getWorkspaceRole(GetWorkspaceRoleArgs.builder()
.name("Developer")
.build());
// Example: invite a Service Account to the Workspace and grant it Developer access
var testServiceAccount = new ServiceAccount("testServiceAccount", ServiceAccountArgs.builder()
.name("my-service-account")
.build());
var testWorkspaceAccess = new WorkspaceAccess("testWorkspaceAccess", WorkspaceAccessArgs.builder()
.accessorType("SERVICE_ACCOUNT")
.accessorId(testServiceAccount.id())
.workspaceRoleId(developer.id())
.workspaceId(test.id())
.build());
// Example: invite a Team to the Workspace and grant it Developer access
final var testGetTeam = PrefectFunctions.getTeam(GetTeamArgs.builder()
.name("my-team")
.build());
var testTeam = new WorkspaceAccess("testTeam", WorkspaceAccessArgs.builder()
.accessorType("TEAM")
.accessorId(testGetTeam.id())
.workspaceRoleId(developer.id())
.workspaceId(test.id())
.build());
// Define the Work Pool and grant access to the Work Pool
var testWorkPool = new WorkPool("testWorkPool", WorkPoolArgs.builder()
.name("my-work-pool")
.workspaceId(test.id())
.build());
var testWorkPoolAccess = new WorkPoolAccess("testWorkPoolAccess", WorkPoolAccessArgs.builder()
.workspaceId(test.id())
.workPoolName(testWorkPool.name())
.manageActorIds(testServiceAccount.actorId())
.runActorIds(testServiceAccount.actorId())
.viewActorIds(testServiceAccount.actorId())
.manageTeamIds(testGetTeam.id())
.runTeamIds(testGetTeam.id())
.viewTeamIds(testGetTeam.id())
.build());
}
}
resources:
# Example: invite a Service Account to the Workspace and grant it Developer access
testServiceAccount:
type: prefect:ServiceAccount
name: test
properties:
name: my-service-account
testWorkspaceAccess:
type: prefect:WorkspaceAccess
name: test
properties:
accessorType: SERVICE_ACCOUNT
accessorId: ${testServiceAccount.id}
workspaceRoleId: ${developer.id}
workspaceId: ${test.id}
testTeam:
type: prefect:WorkspaceAccess
name: test_team
properties:
accessorType: TEAM
accessorId: ${testGetTeam.id}
workspaceRoleId: ${developer.id}
workspaceId: ${test.id}
# Define the Work Pool and grant access to the Work Pool
testWorkPool:
type: prefect:WorkPool
name: test
properties:
name: my-work-pool
workspaceId: ${test.id}
testWorkPoolAccess:
type: prefect:WorkPoolAccess
name: test
properties:
workspaceId: ${test.id}
workPoolName: ${testWorkPool.name}
manageActorIds:
- ${testServiceAccount.actorId}
runActorIds:
- ${testServiceAccount.actorId}
viewActorIds:
- ${testServiceAccount.actorId}
manageTeamIds:
- ${testGetTeam.id}
runTeamIds:
- ${testGetTeam.id}
viewTeamIds:
- ${testGetTeam.id}
variables:
# All work pools are scoped to a Workspace.
test:
fn::invoke:
function: prefect:getWorkspace
arguments:
handle: my-workspace
# Be sure to grant all Actors/Teams who need Work Pool access to first be
# invited to the Workspace (with a role).
developer:
fn::invoke:
function: prefect:getWorkspaceRole
arguments:
name: Developer
# Example: invite a Team to the Workspace and grant it Developer access
testGetTeam:
fn::invoke:
function: prefect:getTeam
arguments:
name: my-team
Create WorkPoolAccess Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkPoolAccess(name: string, args: WorkPoolAccessArgs, opts?: CustomResourceOptions);@overload
def WorkPoolAccess(resource_name: str,
args: WorkPoolAccessArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkPoolAccess(resource_name: str,
opts: Optional[ResourceOptions] = None,
work_pool_name: Optional[str] = None,
account_id: Optional[str] = None,
manage_actor_ids: Optional[Sequence[str]] = None,
manage_team_ids: Optional[Sequence[str]] = None,
run_actor_ids: Optional[Sequence[str]] = None,
run_team_ids: Optional[Sequence[str]] = None,
view_actor_ids: Optional[Sequence[str]] = None,
view_team_ids: Optional[Sequence[str]] = None,
workspace_id: Optional[str] = None)func NewWorkPoolAccess(ctx *Context, name string, args WorkPoolAccessArgs, opts ...ResourceOption) (*WorkPoolAccess, error)public WorkPoolAccess(string name, WorkPoolAccessArgs args, CustomResourceOptions? opts = null)
public WorkPoolAccess(String name, WorkPoolAccessArgs args)
public WorkPoolAccess(String name, WorkPoolAccessArgs args, CustomResourceOptions options)
type: prefect:WorkPoolAccess
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args WorkPoolAccessArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args WorkPoolAccessArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WorkPoolAccessArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkPoolAccessArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkPoolAccessArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var workPoolAccessResource = new Prefect.WorkPoolAccess("workPoolAccessResource", new()
{
WorkPoolName = "string",
AccountId = "string",
ManageActorIds = new[]
{
"string",
},
ManageTeamIds = new[]
{
"string",
},
RunActorIds = new[]
{
"string",
},
RunTeamIds = new[]
{
"string",
},
ViewActorIds = new[]
{
"string",
},
ViewTeamIds = new[]
{
"string",
},
WorkspaceId = "string",
});
example, err := prefect.NewWorkPoolAccess(ctx, "workPoolAccessResource", &prefect.WorkPoolAccessArgs{
WorkPoolName: pulumi.String("string"),
AccountId: pulumi.String("string"),
ManageActorIds: pulumi.StringArray{
pulumi.String("string"),
},
ManageTeamIds: pulumi.StringArray{
pulumi.String("string"),
},
RunActorIds: pulumi.StringArray{
pulumi.String("string"),
},
RunTeamIds: pulumi.StringArray{
pulumi.String("string"),
},
ViewActorIds: pulumi.StringArray{
pulumi.String("string"),
},
ViewTeamIds: pulumi.StringArray{
pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
})
var workPoolAccessResource = new WorkPoolAccess("workPoolAccessResource", WorkPoolAccessArgs.builder()
.workPoolName("string")
.accountId("string")
.manageActorIds("string")
.manageTeamIds("string")
.runActorIds("string")
.runTeamIds("string")
.viewActorIds("string")
.viewTeamIds("string")
.workspaceId("string")
.build());
work_pool_access_resource = prefect.WorkPoolAccess("workPoolAccessResource",
work_pool_name="string",
account_id="string",
manage_actor_ids=["string"],
manage_team_ids=["string"],
run_actor_ids=["string"],
run_team_ids=["string"],
view_actor_ids=["string"],
view_team_ids=["string"],
workspace_id="string")
const workPoolAccessResource = new prefect.WorkPoolAccess("workPoolAccessResource", {
workPoolName: "string",
accountId: "string",
manageActorIds: ["string"],
manageTeamIds: ["string"],
runActorIds: ["string"],
runTeamIds: ["string"],
viewActorIds: ["string"],
viewTeamIds: ["string"],
workspaceId: "string",
});
type: prefect:WorkPoolAccess
properties:
accountId: string
manageActorIds:
- string
manageTeamIds:
- string
runActorIds:
- string
runTeamIds:
- string
viewActorIds:
- string
viewTeamIds:
- string
workPoolName: string
workspaceId: string
WorkPoolAccess Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The WorkPoolAccess resource accepts the following input properties:
- Work
Pool stringName - The name of the Work Pool
- Account
Id string - Account ID (UUID)
- Manage
Actor List<string>Ids - List of actor IDs with manage access to the Work Pool
- Manage
Team List<string>Ids - List of team IDs with manage access to the Work Pool
- Run
Actor List<string>Ids - List of actor IDs with run access to the Work Pool
- Run
Team List<string>Ids - List of team IDs with run access to the Work Pool
- View
Actor List<string>Ids - List of actor IDs with view access to the Work Pool
- View
Team List<string>Ids - List of team IDs with view access to the Work Pool
- Workspace
Id string - Workspace ID (UUID)
- Work
Pool stringName - The name of the Work Pool
- Account
Id string - Account ID (UUID)
- Manage
Actor []stringIds - List of actor IDs with manage access to the Work Pool
- Manage
Team []stringIds - List of team IDs with manage access to the Work Pool
- Run
Actor []stringIds - List of actor IDs with run access to the Work Pool
- Run
Team []stringIds - List of team IDs with run access to the Work Pool
- View
Actor []stringIds - List of actor IDs with view access to the Work Pool
- View
Team []stringIds - List of team IDs with view access to the Work Pool
- Workspace
Id string - Workspace ID (UUID)
- work
Pool StringName - The name of the Work Pool
- account
Id String - Account ID (UUID)
- manage
Actor List<String>Ids - List of actor IDs with manage access to the Work Pool
- manage
Team List<String>Ids - List of team IDs with manage access to the Work Pool
- run
Actor List<String>Ids - List of actor IDs with run access to the Work Pool
- run
Team List<String>Ids - List of team IDs with run access to the Work Pool
- view
Actor List<String>Ids - List of actor IDs with view access to the Work Pool
- view
Team List<String>Ids - List of team IDs with view access to the Work Pool
- workspace
Id String - Workspace ID (UUID)
- work
Pool stringName - The name of the Work Pool
- account
Id string - Account ID (UUID)
- manage
Actor string[]Ids - List of actor IDs with manage access to the Work Pool
- manage
Team string[]Ids - List of team IDs with manage access to the Work Pool
- run
Actor string[]Ids - List of actor IDs with run access to the Work Pool
- run
Team string[]Ids - List of team IDs with run access to the Work Pool
- view
Actor string[]Ids - List of actor IDs with view access to the Work Pool
- view
Team string[]Ids - List of team IDs with view access to the Work Pool
- workspace
Id string - Workspace ID (UUID)
- work_
pool_ strname - The name of the Work Pool
- account_
id str - Account ID (UUID)
- manage_
actor_ Sequence[str]ids - List of actor IDs with manage access to the Work Pool
- manage_
team_ Sequence[str]ids - List of team IDs with manage access to the Work Pool
- run_
actor_ Sequence[str]ids - List of actor IDs with run access to the Work Pool
- run_
team_ Sequence[str]ids - List of team IDs with run access to the Work Pool
- view_
actor_ Sequence[str]ids - List of actor IDs with view access to the Work Pool
- view_
team_ Sequence[str]ids - List of team IDs with view access to the Work Pool
- workspace_
id str - Workspace ID (UUID)
- work
Pool StringName - The name of the Work Pool
- account
Id String - Account ID (UUID)
- manage
Actor List<String>Ids - List of actor IDs with manage access to the Work Pool
- manage
Team List<String>Ids - List of team IDs with manage access to the Work Pool
- run
Actor List<String>Ids - List of actor IDs with run access to the Work Pool
- run
Team List<String>Ids - List of team IDs with run access to the Work Pool
- view
Actor List<String>Ids - List of actor IDs with view access to the Work Pool
- view
Team List<String>Ids - List of team IDs with view access to the Work Pool
- workspace
Id String - Workspace ID (UUID)
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkPoolAccess resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing WorkPoolAccess Resource
Get an existing WorkPoolAccess resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: WorkPoolAccessState, opts?: CustomResourceOptions): WorkPoolAccess@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
manage_actor_ids: Optional[Sequence[str]] = None,
manage_team_ids: Optional[Sequence[str]] = None,
run_actor_ids: Optional[Sequence[str]] = None,
run_team_ids: Optional[Sequence[str]] = None,
view_actor_ids: Optional[Sequence[str]] = None,
view_team_ids: Optional[Sequence[str]] = None,
work_pool_name: Optional[str] = None,
workspace_id: Optional[str] = None) -> WorkPoolAccessfunc GetWorkPoolAccess(ctx *Context, name string, id IDInput, state *WorkPoolAccessState, opts ...ResourceOption) (*WorkPoolAccess, error)public static WorkPoolAccess Get(string name, Input<string> id, WorkPoolAccessState? state, CustomResourceOptions? opts = null)public static WorkPoolAccess get(String name, Output<String> id, WorkPoolAccessState state, CustomResourceOptions options)resources: _: type: prefect:WorkPoolAccess get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Id string - Account ID (UUID)
- Manage
Actor List<string>Ids - List of actor IDs with manage access to the Work Pool
- Manage
Team List<string>Ids - List of team IDs with manage access to the Work Pool
- Run
Actor List<string>Ids - List of actor IDs with run access to the Work Pool
- Run
Team List<string>Ids - List of team IDs with run access to the Work Pool
- View
Actor List<string>Ids - List of actor IDs with view access to the Work Pool
- View
Team List<string>Ids - List of team IDs with view access to the Work Pool
- Work
Pool stringName - The name of the Work Pool
- Workspace
Id string - Workspace ID (UUID)
- Account
Id string - Account ID (UUID)
- Manage
Actor []stringIds - List of actor IDs with manage access to the Work Pool
- Manage
Team []stringIds - List of team IDs with manage access to the Work Pool
- Run
Actor []stringIds - List of actor IDs with run access to the Work Pool
- Run
Team []stringIds - List of team IDs with run access to the Work Pool
- View
Actor []stringIds - List of actor IDs with view access to the Work Pool
- View
Team []stringIds - List of team IDs with view access to the Work Pool
- Work
Pool stringName - The name of the Work Pool
- Workspace
Id string - Workspace ID (UUID)
- account
Id String - Account ID (UUID)
- manage
Actor List<String>Ids - List of actor IDs with manage access to the Work Pool
- manage
Team List<String>Ids - List of team IDs with manage access to the Work Pool
- run
Actor List<String>Ids - List of actor IDs with run access to the Work Pool
- run
Team List<String>Ids - List of team IDs with run access to the Work Pool
- view
Actor List<String>Ids - List of actor IDs with view access to the Work Pool
- view
Team List<String>Ids - List of team IDs with view access to the Work Pool
- work
Pool StringName - The name of the Work Pool
- workspace
Id String - Workspace ID (UUID)
- account
Id string - Account ID (UUID)
- manage
Actor string[]Ids - List of actor IDs with manage access to the Work Pool
- manage
Team string[]Ids - List of team IDs with manage access to the Work Pool
- run
Actor string[]Ids - List of actor IDs with run access to the Work Pool
- run
Team string[]Ids - List of team IDs with run access to the Work Pool
- view
Actor string[]Ids - List of actor IDs with view access to the Work Pool
- view
Team string[]Ids - List of team IDs with view access to the Work Pool
- work
Pool stringName - The name of the Work Pool
- workspace
Id string - Workspace ID (UUID)
- account_
id str - Account ID (UUID)
- manage_
actor_ Sequence[str]ids - List of actor IDs with manage access to the Work Pool
- manage_
team_ Sequence[str]ids - List of team IDs with manage access to the Work Pool
- run_
actor_ Sequence[str]ids - List of actor IDs with run access to the Work Pool
- run_
team_ Sequence[str]ids - List of team IDs with run access to the Work Pool
- view_
actor_ Sequence[str]ids - List of actor IDs with view access to the Work Pool
- view_
team_ Sequence[str]ids - List of team IDs with view access to the Work Pool
- work_
pool_ strname - The name of the Work Pool
- workspace_
id str - Workspace ID (UUID)
- account
Id String - Account ID (UUID)
- manage
Actor List<String>Ids - List of actor IDs with manage access to the Work Pool
- manage
Team List<String>Ids - List of team IDs with manage access to the Work Pool
- run
Actor List<String>Ids - List of actor IDs with run access to the Work Pool
- run
Team List<String>Ids - List of team IDs with run access to the Work Pool
- view
Actor List<String>Ids - List of actor IDs with view access to the Work Pool
- view
Team List<String>Ids - List of team IDs with view access to the Work Pool
- work
Pool StringName - The name of the Work Pool
- workspace
Id String - Workspace ID (UUID)
Package Details
- Repository
- prefect prefecthq/terraform-provider-prefect
- License
- Notes
- This Pulumi package is based on the
prefectTerraform Provider.
