sdm.RemoteIdentity
Explore with Pulumi AI
RemoteIdentities define the username to be used for a specific account when connecting to a remote resource using that group.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdm.RemoteIdentity;
import com.pulumi.sdm.RemoteIdentityArgs;
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) {
var user = new RemoteIdentity("user", RemoteIdentityArgs.builder()
.id("i-0900909")
.username("user")
.build());
}
}
resources:
user:
type: sdm:RemoteIdentity
properties:
id: i-0900909
username: user
This resource can be imported using the import command.
Create RemoteIdentity Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RemoteIdentity(name: string, args: RemoteIdentityArgs, opts?: CustomResourceOptions);
@overload
def RemoteIdentity(resource_name: str,
args: RemoteIdentityArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RemoteIdentity(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
remote_identity_group_id: Optional[str] = None,
username: Optional[str] = None)
func NewRemoteIdentity(ctx *Context, name string, args RemoteIdentityArgs, opts ...ResourceOption) (*RemoteIdentity, error)
public RemoteIdentity(string name, RemoteIdentityArgs args, CustomResourceOptions? opts = null)
public RemoteIdentity(String name, RemoteIdentityArgs args)
public RemoteIdentity(String name, RemoteIdentityArgs args, CustomResourceOptions options)
type: sdm:RemoteIdentity
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 RemoteIdentityArgs
- 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 RemoteIdentityArgs
- 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 RemoteIdentityArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RemoteIdentityArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RemoteIdentityArgs
- 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 remoteIdentityResource = new Sdm.RemoteIdentity("remoteIdentityResource", new()
{
AccountId = "string",
RemoteIdentityGroupId = "string",
Username = "string",
});
example, err := sdm.NewRemoteIdentity(ctx, "remoteIdentityResource", &sdm.RemoteIdentityArgs{
AccountId: pulumi.String("string"),
RemoteIdentityGroupId: pulumi.String("string"),
Username: pulumi.String("string"),
})
var remoteIdentityResource = new RemoteIdentity("remoteIdentityResource", RemoteIdentityArgs.builder()
.accountId("string")
.remoteIdentityGroupId("string")
.username("string")
.build());
remote_identity_resource = sdm.RemoteIdentity("remoteIdentityResource",
account_id="string",
remote_identity_group_id="string",
username="string")
const remoteIdentityResource = new sdm.RemoteIdentity("remoteIdentityResource", {
accountId: "string",
remoteIdentityGroupId: "string",
username: "string",
});
type: sdm:RemoteIdentity
properties:
accountId: string
remoteIdentityGroupId: string
username: string
RemoteIdentity Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The RemoteIdentity resource accepts the following input properties:
- Account
Id string - The account for this remote identity.
- Remote
Identity stringGroup Id - The remote identity group.
- Username string
- The username to be used as the remote identity for this account.
- Account
Id string - The account for this remote identity.
- Remote
Identity stringGroup Id - The remote identity group.
- Username string
- The username to be used as the remote identity for this account.
- account
Id String - The account for this remote identity.
- remote
Identity StringGroup Id - The remote identity group.
- username String
- The username to be used as the remote identity for this account.
- account
Id string - The account for this remote identity.
- remote
Identity stringGroup Id - The remote identity group.
- username string
- The username to be used as the remote identity for this account.
- account_
id str - The account for this remote identity.
- remote_
identity_ strgroup_ id - The remote identity group.
- username str
- The username to be used as the remote identity for this account.
- account
Id String - The account for this remote identity.
- remote
Identity StringGroup Id - The remote identity group.
- username String
- The username to be used as the remote identity for this account.
Outputs
All input properties are implicitly available as output properties. Additionally, the RemoteIdentity 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 RemoteIdentity Resource
Get an existing RemoteIdentity 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?: RemoteIdentityState, opts?: CustomResourceOptions): RemoteIdentity
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
remote_identity_group_id: Optional[str] = None,
username: Optional[str] = None) -> RemoteIdentity
func GetRemoteIdentity(ctx *Context, name string, id IDInput, state *RemoteIdentityState, opts ...ResourceOption) (*RemoteIdentity, error)
public static RemoteIdentity Get(string name, Input<string> id, RemoteIdentityState? state, CustomResourceOptions? opts = null)
public static RemoteIdentity get(String name, Output<String> id, RemoteIdentityState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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 - The account for this remote identity.
- Remote
Identity stringGroup Id - The remote identity group.
- Username string
- The username to be used as the remote identity for this account.
- Account
Id string - The account for this remote identity.
- Remote
Identity stringGroup Id - The remote identity group.
- Username string
- The username to be used as the remote identity for this account.
- account
Id String - The account for this remote identity.
- remote
Identity StringGroup Id - The remote identity group.
- username String
- The username to be used as the remote identity for this account.
- account
Id string - The account for this remote identity.
- remote
Identity stringGroup Id - The remote identity group.
- username string
- The username to be used as the remote identity for this account.
- account_
id str - The account for this remote identity.
- remote_
identity_ strgroup_ id - The remote identity group.
- username str
- The username to be used as the remote identity for this account.
- account
Id String - The account for this remote identity.
- remote
Identity StringGroup Id - The remote identity group.
- username String
- The username to be used as the remote identity for this account.
Import
A RemoteIdentity can be imported using the id, e.g.,
$ pulumi import sdm:index/remoteIdentity:RemoteIdentity example i-12345678
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdm pierskarsenbarg/pulumi-sdm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdm
Terraform Provider.