License Grant Args
data class LicenseGrantArgs(val allowedOperations: Output<List<String>>? = null, val licenseArn: Output<String>? = null, val name: Output<String>? = null, val principal: Output<String>? = null) : ConvertibleToJava<LicenseGrantArgs>
Provides a License Manager grant. This allows for sharing licenses with other AWS accounts.
Example Usage
resources:
test:
type: aws:licensemanager:LicenseGrant
properties:
name: share-license-with-account
allowedOperations:
- ListPurchasedLicenses
- CheckoutLicense
- CheckInLicense
- ExtendConsumptionLicense
- CreateToken
licenseArn: arn:aws:license-manager::111111111111:license:l-exampleARN
principal: arn:aws:iam::111111111112:root
homeRegion: us-east-1
Content copied to clipboard
Import
Using pulumi import
, import aws_licensemanager_grant
using the grant arn. For example:
$ pulumi import aws:licensemanager/licenseGrant:LicenseGrant test arn:aws:license-manager::123456789011:grant:g-01d313393d9e443d8664cc054db1e089
Content copied to clipboard