Create App
opsworks_create_app | R Documentation |
Creates an app for a specified stack¶
Description¶
Creates an app for a specified stack. For more information, see Creating Apps.
Required Permissions: To use this action, an IAM user must have a Manage permissions level for the stack, or an attached policy that explicitly grants permissions. For more information on user permissions, see Managing User Permissions.
Usage¶
opsworks_create_app(StackId, Shortname, Name, Description, DataSources,
Type, AppSource, Domains, EnableSsl, SslConfiguration, Attributes,
Environment)
Arguments¶
StackId |
[required] The stack ID. |
Shortname |
The app's short name. |
Name |
[required] The app name. |
Description |
A description of the app. |
DataSources |
The app's data source. |
Type |
[required] The app type. Each supported type is associated with a
particular layer. For example, PHP applications are associated with a
PHP layer. OpsWorks Stacks deploys an application to those instances
that are members of the corresponding layer. If your app isn't one of
the standard types, or you prefer to implement your own Deploy recipes,
specify |
AppSource |
A |
Domains |
The app virtual host settings, with multiple domains separated by
commas. For example:
|
EnableSsl |
Whether to enable SSL for the app. |
SslConfiguration |
An |
Attributes |
One or more user-defined key/value pairs to be added to the stack attributes. |
Environment |
An array of There is no specific limit on the number of environment variables. However, the size of the associated data structure - which includes the variables' names, values, and protected flag values - cannot exceed 20 KB. This limit should accommodate most if not all use cases. Exceeding it will cause an exception with the message, "Environment: is too large (maximum is 20KB)." If you have specified one or more environment variables, you cannot modify the stack's Chef version. |
Value¶
A list with the following syntax:
list(
AppId = "string"
)
Request syntax¶
svc$create_app(
StackId = "string",
Shortname = "string",
Name = "string",
Description = "string",
DataSources = list(
list(
Type = "string",
Arn = "string",
DatabaseName = "string"
)
),
Type = "aws-flow-ruby"|"java"|"rails"|"php"|"nodejs"|"static"|"other",
AppSource = list(
Type = "git"|"svn"|"archive"|"s3",
Url = "string",
Username = "string",
Password = "string",
SshKey = "string",
Revision = "string"
),
Domains = list(
"string"
),
EnableSsl = TRUE|FALSE,
SslConfiguration = list(
Certificate = "string",
PrivateKey = "string",
Chain = "string"
),
Attributes = list(
"string"
),
Environment = list(
list(
Key = "string",
Value = "string",
Secure = TRUE|FALSE
)
)
)