-
Useful Links:
-
Exam Tips:
- There's a requirement for a enduser to deploy products that they don't have permissions to do otherwise, in a self-service way.
- Used to tag provisioned resources with corresponding unique identifiers for portfolio, product, and users.
*** How it works:**
-
- Admins define products and portfolios using CloudFormation Templates and Service Catalog configuration
-
- Deploy portfolio to any service enabled regions.
-
- Service Catalog users review portfolios they have permissions on and launch product(s) into service enabled regions.
-
- Service Catalog launchers the infrastructure using defined templates. Service catalog users don't need infrastructure permissions .. only launch permissions.
-
- Products are available for usage.
-
If you want to give your enduser permission to launch a product you need this policy created and attached.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"servicecatalog:ProvisionProduct"
],
"Resource": "*"
}
]
}