published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Note This resource has an evolving API, which may change in future versions of the provider.
This resource allows you to attach databricks.InstanceProfile (AWS) to databricks_group.
Related Resources
The following resources are often used in the same context:
- End to end workspace management guide.
- databricks.getAwsBucketPolicy data to configure a simple access policy for AWS S3 buckets, so that Databricks can access data in it.
- databricks.ClusterPolicy to create a databricks.Cluster policy, which limits the ability to create clusters based on a set of rules.
- databricks.Group to manage groups in Databricks Workspace or Account Console (for AWS deployments).
- databricks.Group data to retrieve information about databricks.Group members, entitlements and instance profiles.
- databricks_group_member to attach users and groups as group members.
- databricks.InstancePool to manage instance pools to reduce cluster start and auto-scaling times by maintaining a set of idle, ready-to-use instances.
- databricks.InstanceProfile to manage AWS EC2 instance profiles that users can launch databricks.Cluster and access data, like databricks_mount.
- databricks.UserInstanceProfile to attach databricks.InstanceProfile (AWS) to databricks_user.
Example Usage
using Pulumi;
using Databricks = Pulumi.Databricks;
class MyStack : Stack
{
public MyStack()
{
var instanceProfile = new Databricks.InstanceProfile("instanceProfile", new Databricks.InstanceProfileArgs
{
InstanceProfileArn = "my_instance_profile_arn",
});
var myGroup = new Databricks.Group("myGroup", new Databricks.GroupArgs
{
DisplayName = "my_group_name",
});
var myGroupInstanceProfile = new Databricks.GroupInstanceProfile("myGroupInstanceProfile", new Databricks.GroupInstanceProfileArgs
{
GroupId = myGroup.Id,
InstanceProfileId = instanceProfile.Id,
});
}
}
package main
import (
"github.com/pulumi/pulumi-databricks/sdk/go/databricks"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
instanceProfile, err := databricks.NewInstanceProfile(ctx, "instanceProfile", &databricks.InstanceProfileArgs{
InstanceProfileArn: pulumi.String("my_instance_profile_arn"),
})
if err != nil {
return err
}
myGroup, err := databricks.NewGroup(ctx, "myGroup", &databricks.GroupArgs{
DisplayName: pulumi.String("my_group_name"),
})
if err != nil {
return err
}
_, err = databricks.NewGroupInstanceProfile(ctx, "myGroupInstanceProfile", &databricks.GroupInstanceProfileArgs{
GroupId: myGroup.ID(),
InstanceProfileId: instanceProfile.ID(),
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as databricks from "@pulumi/databricks";
const instanceProfile = new databricks.InstanceProfile("instanceProfile", {instanceProfileArn: "my_instance_profile_arn"});
const myGroup = new databricks.Group("myGroup", {displayName: "my_group_name"});
const myGroupInstanceProfile = new databricks.GroupInstanceProfile("myGroupInstanceProfile", {
groupId: myGroup.id,
instanceProfileId: instanceProfile.id,
});
import pulumi
import pulumi_databricks as databricks
instance_profile = databricks.InstanceProfile("instanceProfile", instance_profile_arn="my_instance_profile_arn")
my_group = databricks.Group("myGroup", display_name="my_group_name")
my_group_instance_profile = databricks.GroupInstanceProfile("myGroupInstanceProfile",
group_id=my_group.id,
instance_profile_id=instance_profile.id)
Example coming soon!
Create GroupInstanceProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GroupInstanceProfile(name: string, args: GroupInstanceProfileArgs, opts?: CustomResourceOptions);@overload
def GroupInstanceProfile(resource_name: str,
args: GroupInstanceProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GroupInstanceProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
group_id: Optional[str] = None,
instance_profile_id: Optional[str] = None)func NewGroupInstanceProfile(ctx *Context, name string, args GroupInstanceProfileArgs, opts ...ResourceOption) (*GroupInstanceProfile, error)public GroupInstanceProfile(string name, GroupInstanceProfileArgs args, CustomResourceOptions? opts = null)
public GroupInstanceProfile(String name, GroupInstanceProfileArgs args)
public GroupInstanceProfile(String name, GroupInstanceProfileArgs args, CustomResourceOptions options)
type: databricks:GroupInstanceProfile
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 GroupInstanceProfileArgs
- 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 GroupInstanceProfileArgs
- 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 GroupInstanceProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GroupInstanceProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GroupInstanceProfileArgs
- 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 groupInstanceProfileResource = new Databricks.GroupInstanceProfile("groupInstanceProfileResource", new()
{
GroupId = "string",
InstanceProfileId = "string",
});
example, err := databricks.NewGroupInstanceProfile(ctx, "groupInstanceProfileResource", &databricks.GroupInstanceProfileArgs{
GroupId: pulumi.String("string"),
InstanceProfileId: pulumi.String("string"),
})
var groupInstanceProfileResource = new GroupInstanceProfile("groupInstanceProfileResource", GroupInstanceProfileArgs.builder()
.groupId("string")
.instanceProfileId("string")
.build());
group_instance_profile_resource = databricks.GroupInstanceProfile("groupInstanceProfileResource",
group_id="string",
instance_profile_id="string")
const groupInstanceProfileResource = new databricks.GroupInstanceProfile("groupInstanceProfileResource", {
groupId: "string",
instanceProfileId: "string",
});
type: databricks:GroupInstanceProfile
properties:
groupId: string
instanceProfileId: string
GroupInstanceProfile 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 GroupInstanceProfile resource accepts the following input properties:
- Group
Id string - This is the id of the group resource.
- Instance
Profile stringId - This is the id of the instance profile resource.
- Group
Id string - This is the id of the group resource.
- Instance
Profile stringId - This is the id of the instance profile resource.
- group
Id String - This is the id of the group resource.
- instance
Profile StringId - This is the id of the instance profile resource.
- group
Id string - This is the id of the group resource.
- instance
Profile stringId - This is the id of the instance profile resource.
- group_
id str - This is the id of the group resource.
- instance_
profile_ strid - This is the id of the instance profile resource.
- group
Id String - This is the id of the group resource.
- instance
Profile StringId - This is the id of the instance profile resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the GroupInstanceProfile 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 GroupInstanceProfile Resource
Get an existing GroupInstanceProfile 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?: GroupInstanceProfileState, opts?: CustomResourceOptions): GroupInstanceProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
group_id: Optional[str] = None,
instance_profile_id: Optional[str] = None) -> GroupInstanceProfilefunc GetGroupInstanceProfile(ctx *Context, name string, id IDInput, state *GroupInstanceProfileState, opts ...ResourceOption) (*GroupInstanceProfile, error)public static GroupInstanceProfile Get(string name, Input<string> id, GroupInstanceProfileState? state, CustomResourceOptions? opts = null)public static GroupInstanceProfile get(String name, Output<String> id, GroupInstanceProfileState state, CustomResourceOptions options)resources: _: type: databricks:GroupInstanceProfile 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.
- Group
Id string - This is the id of the group resource.
- Instance
Profile stringId - This is the id of the instance profile resource.
- Group
Id string - This is the id of the group resource.
- Instance
Profile stringId - This is the id of the instance profile resource.
- group
Id String - This is the id of the group resource.
- instance
Profile StringId - This is the id of the instance profile resource.
- group
Id string - This is the id of the group resource.
- instance
Profile stringId - This is the id of the instance profile resource.
- group_
id str - This is the id of the group resource.
- instance_
profile_ strid - This is the id of the instance profile resource.
- group
Id String - This is the id of the group resource.
- instance
Profile StringId - This is the id of the instance profile resource.
Import
-> Note Importing this resource is not currently supported.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- databricks pulumi/pulumi-databricks
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
databricksTerraform Provider.
published on Monday, Mar 9, 2026 by Pulumi
