platform.AwsIamRole
Explore with Pulumi AI
Provides a resource to manage AWS IAM roles for JFrog platform users. You can use the AWS IAM roles for passwordless access to Amazon EKS. For more information, see Passwordless Access for Amazon EKS.
->Only available for Artifactory 7.90.10 or later.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as platform from "@pulumi/platform";
const myuser_aws_iam_role = new platform.AwsIamRole("myuser-aws-iam-role", {
iamRole: "arn:aws:iam::000000000000:role/example",
username: "myuser",
});
import pulumi
import pulumi_platform as platform
myuser_aws_iam_role = platform.AwsIamRole("myuser-aws-iam-role",
iam_role="arn:aws:iam::000000000000:role/example",
username="myuser")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/platform/v2/platform"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := platform.NewAwsIamRole(ctx, "myuser-aws-iam-role", &platform.AwsIamRoleArgs{
IamRole: pulumi.String("arn:aws:iam::000000000000:role/example"),
Username: pulumi.String("myuser"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Platform = Pulumi.Platform;
return await Deployment.RunAsync(() =>
{
var myuser_aws_iam_role = new Platform.AwsIamRole("myuser-aws-iam-role", new()
{
IamRole = "arn:aws:iam::000000000000:role/example",
Username = "myuser",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.platform.AwsIamRole;
import com.pulumi.platform.AwsIamRoleArgs;
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 myuser_aws_iam_role = new AwsIamRole("myuser-aws-iam-role", AwsIamRoleArgs.builder()
.iamRole("arn:aws:iam::000000000000:role/example")
.username("myuser")
.build());
}
}
resources:
myuser-aws-iam-role:
type: platform:AwsIamRole
properties:
iamRole: arn:aws:iam::000000000000:role/example
username: myuser
Create AwsIamRole Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AwsIamRole(name: string, args: AwsIamRoleArgs, opts?: CustomResourceOptions);
@overload
def AwsIamRole(resource_name: str,
args: AwsIamRoleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AwsIamRole(resource_name: str,
opts: Optional[ResourceOptions] = None,
iam_role: Optional[str] = None,
username: Optional[str] = None)
func NewAwsIamRole(ctx *Context, name string, args AwsIamRoleArgs, opts ...ResourceOption) (*AwsIamRole, error)
public AwsIamRole(string name, AwsIamRoleArgs args, CustomResourceOptions? opts = null)
public AwsIamRole(String name, AwsIamRoleArgs args)
public AwsIamRole(String name, AwsIamRoleArgs args, CustomResourceOptions options)
type: platform:AwsIamRole
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 AwsIamRoleArgs
- 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 AwsIamRoleArgs
- 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 AwsIamRoleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AwsIamRoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AwsIamRoleArgs
- 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 awsIamRoleResource = new Platform.AwsIamRole("awsIamRoleResource", new()
{
IamRole = "string",
Username = "string",
});
example, err := platform.NewAwsIamRole(ctx, "awsIamRoleResource", &platform.AwsIamRoleArgs{
IamRole: pulumi.String("string"),
Username: pulumi.String("string"),
})
var awsIamRoleResource = new AwsIamRole("awsIamRoleResource", AwsIamRoleArgs.builder()
.iamRole("string")
.username("string")
.build());
aws_iam_role_resource = platform.AwsIamRole("awsIamRoleResource",
iam_role="string",
username="string")
const awsIamRoleResource = new platform.AwsIamRole("awsIamRoleResource", {
iamRole: "string",
username: "string",
});
type: platform:AwsIamRole
properties:
iamRole: string
username: string
AwsIamRole 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 AwsIamRole resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the AwsIamRole 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 AwsIamRole Resource
Get an existing AwsIamRole 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?: AwsIamRoleState, opts?: CustomResourceOptions): AwsIamRole
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
iam_role: Optional[str] = None,
username: Optional[str] = None) -> AwsIamRole
func GetAwsIamRole(ctx *Context, name string, id IDInput, state *AwsIamRoleState, opts ...ResourceOption) (*AwsIamRole, error)
public static AwsIamRole Get(string name, Input<string> id, AwsIamRoleState? state, CustomResourceOptions? opts = null)
public static AwsIamRole get(String name, Output<String> id, AwsIamRoleState state, CustomResourceOptions options)
resources: _: type: platform:AwsIamRole 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.
Import
$ pulumi import platform:index/awsIamRole:AwsIamRole myuser-aws-iam-role myuser
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- platform jfrog/terraform-provider-platform
- License
- Notes
- This Pulumi package is based on the
platform
Terraform Provider.