├── .gitignore
├── .gitmodules
├── .metadata
├── .nojekyll
├── .taskcat.yml
├── CODEOWNERS
├── LICENSE.txt
├── NOTICE.txt
├── README.md
├── docs
├── generated
│ ├── parameters
│ │ └── index.adoc
│ ├── regions
│ │ └── index.adoc
│ └── services
│ │ ├── index.adoc
│ │ └── metadata.adoc
├── images
│ ├── GrafanaConsole.png
│ ├── aws-quickstart-graphic.png
│ ├── cfn_outputs.png
│ ├── clickhouse-architecture-diagram.png
│ ├── clickhouse-architecture-diagram.pptx
│ ├── clickhouse-cluster-architecture-diagram.png
│ ├── clickhouse_cluster_architecture_diagram.png
│ ├── cloudformation_outputs.png
│ ├── ec2.png
│ ├── secretsmanager.png
│ ├── switchyOmega1.png
│ ├── switchyOmega2.png
│ ├── switchyOmega3.png
│ └── switchyOmega4.png
├── languages
│ └── docs-cn
│ │ ├── _layout_cfn.adoc
│ │ ├── index.adoc
│ │ ├── partner_editable
│ │ ├── _settings.adoc
│ │ ├── additional_info.adoc
│ │ ├── architecture.adoc
│ │ ├── deploy_steps.adoc
│ │ ├── deployment_options.adoc
│ │ ├── faq_troubleshooting.adoc
│ │ ├── licenses.adoc
│ │ ├── overview_target_and_usage.adoc
│ │ ├── pre-reqs.adoc
│ │ ├── product_description.adoc
│ │ ├── regions.adoc
│ │ ├── service_limits.adoc
│ │ └── specialized_knowledge.adoc
│ │ └── translate-only
│ │ ├── LICENSE
│ │ ├── _layout_cfn_cdk_module.adoc
│ │ ├── _layout_cfn_eks_module.adoc
│ │ ├── cost.adoc
│ │ ├── deployment_steps.adoc
│ │ ├── deployment_steps_cdk_module.adoc
│ │ ├── deployment_steps_eks_module.adoc
│ │ ├── disclaimer.adoc
│ │ ├── index-docinfo-footer.html
│ │ ├── introduction.adoc
│ │ ├── overview.adoc
│ │ ├── planning_deployment.adoc
│ │ └── planning_deployment_eks_module.adoc
└── partner_editable
│ ├── _settings.adoc
│ ├── additional_info.adoc
│ ├── architecture.adoc
│ ├── deploy_steps.adoc
│ ├── deployment_options.adoc
│ ├── faq_troubleshooting.adoc
│ ├── licenses.adoc
│ ├── overview_target_and_usage.adoc
│ ├── pre-reqs.adoc
│ ├── product_description.adoc
│ ├── regions.adoc
│ ├── service_limits.adoc
│ └── specialized_knowledge.adoc
├── scripts
├── .gitkeep
├── clickhouse-arm-client-install.sh
├── clickhouse-arm-install.sh
├── clickhouse-client-install.sh
├── clickhouse-install.sh
├── create-table-demo.sql
├── downloaddata.sh
├── find-clickhouse-node.py
├── find-secret.py
├── find-zookeeper-node.py
└── zookeeper-install.sh
└── templates
├── clickhouse-arm-entrypoint-existing-vpc.template.yaml
├── clickhouse-arm-entrypoint-new-vpc.template.yaml
├── clickhouse-entrypoint-existing-vpc.template.yaml
├── clickhouse-entrypoint-new-vpc.template.yaml
├── clickhouse.arm.template.yaml
├── clickhouse.template.yaml
├── cloudwatch-dashboard.template.yaml
├── nlb.template.yaml
├── securitygroups.template.yaml
└── zookeeper.template.yaml
/.gitignore:
--------------------------------------------------------------------------------
1 | # misc
2 | .DS_Store
3 | /taskcat_outputs
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "docs/boilerplate"]
2 | path = docs/boilerplate
3 | url = https://github.com/aws-quickstart/quickstart-documentation-base-common.git
4 | branch = main
5 | [submodule "submodules/quickstart-aws-vpc"]
6 | path = submodules/quickstart-aws-vpc
7 | url = https://github.com/aws-quickstart/quickstart-aws-vpc.git
8 | branch = main
9 | [submodule "submodules/quickstart-linux-bastion"]
10 | path = submodules/quickstart-linux-bastion
11 | url = https://github.com/aws-quickstart/quickstart-linux-bastion.git
12 | branch = main
13 |
--------------------------------------------------------------------------------
/.metadata:
--------------------------------------------------------------------------------
1 | language_type: cloudformation
--------------------------------------------------------------------------------
/.nojekyll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/.nojekyll
--------------------------------------------------------------------------------
/.taskcat.yml:
--------------------------------------------------------------------------------
1 | project:
2 | name: quickstart-clickhouse-cluster
3 | regions:
4 | - us-east-1
5 | parameters:
6 | QSS3BucketName: $[taskcat_autobucket]
7 | QSS3BucketRegion: $[taskcat_current_region]
8 | tests:
9 | default:
10 | parameters:
11 | AvailabilityZones: $[taskcat_genaz_2]
12 | KeyPairName: override
13 | AlarmEmail: override
14 | template: ./templates/clickhouse-entrypoint-new-vpc.template.yaml
--------------------------------------------------------------------------------
/CODEOWNERS:
--------------------------------------------------------------------------------
1 | * @troy-ameigh @aws-quickstart/aws_quickstart_team
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "{}"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright {yyyy} {name of copyright owner}
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
203 |
--------------------------------------------------------------------------------
/NOTICE.txt:
--------------------------------------------------------------------------------
1 | Copyright 2016-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2 |
3 | Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License is located at
4 |
5 | http://aws.amazon.com/apache2.0/
6 |
7 | or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
8 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # quickstart-clickhouse-cluster
2 | ## Deprecation Notice
3 |
4 | :x: This repository is subject to deprecation in Q4 2024. For more details, [please review this announcement](https://github.com/aws-ia/.announcements/issues/1).
5 |
6 | ## This repository has been deprecated in favor of https://github.com/aws-ia/cfn-ps-clickhouse-cluster.
7 | ***We will archive this repository and keep it publicly available until May 1, 2024.***
8 |
--------------------------------------------------------------------------------
/docs/generated/parameters/index.adoc:
--------------------------------------------------------------------------------
1 | // placeholder
2 |
--------------------------------------------------------------------------------
/docs/generated/regions/index.adoc:
--------------------------------------------------------------------------------
1 | // placeholder
2 |
--------------------------------------------------------------------------------
/docs/generated/services/index.adoc:
--------------------------------------------------------------------------------
1 | // placeholder
2 |
--------------------------------------------------------------------------------
/docs/generated/services/metadata.adoc:
--------------------------------------------------------------------------------
1 | // placeholder
2 |
--------------------------------------------------------------------------------
/docs/images/GrafanaConsole.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/GrafanaConsole.png
--------------------------------------------------------------------------------
/docs/images/aws-quickstart-graphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/aws-quickstart-graphic.png
--------------------------------------------------------------------------------
/docs/images/cfn_outputs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/cfn_outputs.png
--------------------------------------------------------------------------------
/docs/images/clickhouse-architecture-diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/clickhouse-architecture-diagram.png
--------------------------------------------------------------------------------
/docs/images/clickhouse-architecture-diagram.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/clickhouse-architecture-diagram.pptx
--------------------------------------------------------------------------------
/docs/images/clickhouse-cluster-architecture-diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/clickhouse-cluster-architecture-diagram.png
--------------------------------------------------------------------------------
/docs/images/clickhouse_cluster_architecture_diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/clickhouse_cluster_architecture_diagram.png
--------------------------------------------------------------------------------
/docs/images/cloudformation_outputs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/cloudformation_outputs.png
--------------------------------------------------------------------------------
/docs/images/ec2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/ec2.png
--------------------------------------------------------------------------------
/docs/images/secretsmanager.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/secretsmanager.png
--------------------------------------------------------------------------------
/docs/images/switchyOmega1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/switchyOmega1.png
--------------------------------------------------------------------------------
/docs/images/switchyOmega2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/switchyOmega2.png
--------------------------------------------------------------------------------
/docs/images/switchyOmega3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/switchyOmega3.png
--------------------------------------------------------------------------------
/docs/images/switchyOmega4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws-quickstart/quickstart-clickhouse-cluster/34a5ab1538ac1575d1667c38190846fe59ff5d9b/docs/images/switchyOmega4.png
--------------------------------------------------------------------------------
/docs/languages/docs-cn/_layout_cfn.adoc:
--------------------------------------------------------------------------------
1 |
2 | [.text-center]
3 | [discrete]
4 | == {partner-product-name} on the AWS Cloud
5 | :doctitle: {partner-product-name} on the AWS Cloud
6 | :!toc:
7 | [.text-left]
8 | include::translate-only/introduction.adoc[]
9 |
10 | == Overview
11 | include::translate-only/overview.adoc[]
12 |
13 |
14 | == {partner-product-name} on AWS
15 | ifndef::production_build[]
16 | _**This portion of the deployment guide is located at `docs/languages/{langdir}/{specificdir}/product_description.adoc`**_
17 | [.preview_mode]
18 | |===
19 | a|
20 | endif::production_build[]
21 | include::{specificdir}/product_description.adoc[]
22 | ifndef::production_build[]
23 | |===
24 | endif::production_build[]
25 |
26 | == Cost
27 | include::translate-only/cost.adoc[]
28 |
29 | ifndef::disable_licenses[]
30 | == Software licenses
31 | ifndef::production_build[]
32 | _**This portion of the deployment guide is located at `docs/languages/{langdir}/{specificdir}/licenses.adoc`**_
33 | [.preview_mode]
34 | |===
35 | a|
36 | endif::production_build[]
37 | include::{specificdir}/licenses.adoc[]
38 | ifndef::production_build[]
39 | |===
40 | endif::production_build[]
41 | endif::disable_licenses[]
42 |
43 | == Architecture
44 | ifndef::production_build[]
45 | _**This portion of the deployment guide is located at `docs/languages/{langdir}/{specificdir}/architecture.adoc`**_
46 | [.preview_mode]
47 | |===
48 | a|
49 | endif::production_build[]
50 | include::{specificdir}/architecture.adoc[]
51 | ifndef::production_build[]
52 | |===
53 | endif::production_build[]
54 |
55 | == Planning the deployment
56 | include::translate-only/planning_deployment.adoc[]
57 |
58 | == Deployment steps
59 | include::translate-only/deployment_steps.adoc[]
60 |
61 | // == Parameters
62 | // include::../{generateddir}/parameters/index.adoc[]
63 |
64 | // additional_info.adoc contains 3 sections: Best Practice, Security & Other information
65 |
66 | ifndef::production_build[]
67 | _**This portion of the deployment guide is located at `docs/languages/{langdir}/{specificdir}/additional_info.adoc`**_
68 | ++++
69 |
70 | ++++
71 | endif::production_build[]
72 | include::{specificdir}/additional_info.adoc[]
73 |
74 |
75 |
76 | ifndef::production_build[]
77 | _**This portion of the deployment guide is located at `docs/languages/{langdir}/{specificdir}/faq_troubleshooting.adoc`**_
78 | ++++
79 |
86 | ++++
87 | endif::production_build[]
88 |
89 | ifndef::no_parameters[]
90 | ifdef::parameters_as_appendix[]
91 | == Parameter reference
92 |
93 | NOTE: Unless you are customizing the Quick Start templates for your own deployment projects, we recommend that you keep the default settings for the parameters labeled `Quick Start S3 bucket name`, `Quick Start S3 bucket
94 | Region`, and `Quick Start S3 key prefix`. Changing these parameter settings automatically updates code references to point to a new Quick Start location. For more information, see the https://aws-quickstart.github.io/option1.html[AWS Quick Start Contributor’s Guide^].
95 |
96 | include::../../{generateddir}/parameters/index.adoc[]
97 | endif::parameters_as_appendix[]
98 | endif::no_parameters[]
99 |
100 | == Send us feedback
101 |
102 | To post feedback, submit feature ideas, or report bugs, use the *Issues* section of the https://github.com/aws-quickstart/{quickstart-project-name}[GitHub repository^] for this Quick Start. To submit code, see the https://aws-quickstart.github.io/[Quick Start Contributor’s Guide^].
103 |
104 | == Quick Start reference deployments
105 |
106 | See the https://aws.amazon.com/quickstart/[AWS Quick Start home page].
107 |
108 |
109 | == GitHub repository
110 |
111 | Visit our https://github.com/aws-quickstart/{quickstart-project-name}[GitHub repository^] to download
112 | the templates and scripts for this Quick Start, to post your comments,
113 | and to share your customizations with others.
114 |
115 | '''
116 | include::translate-only/disclaimer.adoc[]
117 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/index.adoc:
--------------------------------------------------------------------------------
1 | :imagesdir: images
2 | :includedir: boilerplate
3 | :specificdir: partner_editable
4 | :generateddir: generated
5 | :langdir: docs-cn
6 | :icons: font
7 | :toc2: left
8 | :toc-title:
9 | :toclevels: 2
10 | :stylesheet: ../../{includedir}/.css/quickstart.css
11 | :project_cfn:
12 | :template_services_ec2:
13 | include::{specificdir}/_settings.adoc[]
14 |
15 | // the next two lines are needed for quickstarts that are not built with a partner, if removed, footer text is mangled for those quickstarts. They must be below _settings.adoc
16 | ifdef::partner-company-name[:partner-company-footer: {sp}and {partner-company-name}]
17 | ifndef::partner-company-name[:partner-company-footer:]
18 |
19 | // the next 3 lines must remain below partner-company-footer definitions
20 | :nofooter:
21 | :docinfodir: boilerplate
22 | :docinfo:
23 |
24 | :title: {partner-product-name} on the AWS Cloud
25 | ifdef::project_cfn[include::_layout_cfn.adoc[]]
26 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/partner_editable/_settings.adoc:
--------------------------------------------------------------------------------
1 | // Change the following attributes.
2 | :quickstart-project-name: quickstart-documentation-base
3 | :partner-product-name: Example Product Name
4 | // For the following attribute, if you have no short name, enter the same name as partner-product-name.
5 | :partner-product-short-name: Example Product Name
6 | // If there's no partner, comment partner-company-name.
7 | :partner-company-name: Example Company Name, Ltd.
8 | :doc-month: Month of launch or significant update (spelled out)
9 | :doc-year: Year
10 | // Uncomment the following "contributor" attributes as appropriate. If the partner agrees to include names, enter contributor names for every line we use. If partner doesn't want to include names, delete all placeholder names and keep only "{partner-company-name}" and "AWS Quick Start team."
11 | //:partner-contributors: Shuai Ye, Michael McConnell, and John Smith, {partner-company-name}
12 | //:other-contributors: Akua Mansa, Trek10
13 | //:aws-contributors: Janine Singh, AWS IoT Partner team
14 | :quickstart-contributors: Toni Jones, AWS Quick Start team
15 | // For deployment_time, use minutes if deployment takes an hour or less,
16 | // for example, 30 minutes or 60 minutes.
17 | // Use hours for deployment times greater than 60 minutes (rounded to a quarter hour),
18 | // for example, 1.25 hours, 2 hours, 2.5 hours.
19 | :deployment_time: 15 minutes / 60 minutes / 1.5 hours
20 | :default_deployment_region: us-east-1
21 | :parameters_as_appendix:
22 | // Uncomment the following two attributes if you are using an AWS Marketplace listing.
23 | // Additional content will be generated automatically based on these attributes.
24 | // :marketplace_subscription:
25 | // :marketplace_listing_url: https://example.com/
26 | // Uncomment the following attribute to add a statement about AWS and our stance on compliance-related Quick Starts.
27 | // :compliance-statement: Deploying this Quick Start does not guarantee an organization’s compliance with any laws, certifications, policies, or other regulations.
28 | // Uncomment the following two attributes if you are deploying a CDK Quick Start. Make sure to comment out :parameters_as_appendix: also.
29 | // :cdk_qs:
30 | // :no_parameters:
31 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/partner_editable/additional_info.adoc:
--------------------------------------------------------------------------------
1 | // Add steps as necessary for accessing the software, post-configuration, and testing. Don’t include full usage instructions for your software, but add links to your product documentation for that information.
2 | //Should any sections not be applicable, remove them
3 |
4 | == Test the deployment
5 | // If steps are required to test the deployment, add them here. If not, remove the heading
6 |
7 | == Post-deployment steps
8 | // If post-deployment steps are required, add them here. If not, remove the heading
9 |
10 | == Best practices for using {partner-product-short-name} on AWS
11 | // Provide post-deployment best practices for using the technology on AWS, including considerations such as migrating data, backups, ensuring high performance, high availability, etc. Link to software documentation for detailed information.
12 |
13 | _Add any best practices for using the software._
14 |
15 | == Security
16 | // Provide post-deployment best practices for using the technology on AWS, including considerations such as migrating data, backups, ensuring high performance, high availability, etc. Link to software documentation for detailed information.
17 |
18 | _Add any security-related information._
19 |
20 | == Other useful information
21 | //Provide any other information of interest to users, especially focusing on areas where AWS or cloud usage differs from on-premises usage.
22 |
23 | _Add any other details that will help the customer use the software on AWS._
24 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/partner_editable/architecture.adoc:
--------------------------------------------------------------------------------
1 | :xrefstyle: short
2 |
3 | Deploying this Quick Start for a new virtual private cloud (VPC) with
4 | default parameters builds the following {partner-product-short-name} environment in the
5 | AWS Cloud.
6 |
7 | // Replace this example diagram with your own. Follow our wiki guidelines: https://w.amazon.com/bin/view/AWS_Quick_Starts/Process_for_PSAs/#HPrepareyourarchitecturediagram. Upload your source PowerPoint file to the GitHub {deployment name}/docs/images/ directory in this repo.
8 |
9 | [#architecture1]
10 | .Quick Start architecture for {partner-product-short-name} on AWS
11 | image::../images/architecture_diagram.png[Architecture]
12 |
13 | As shown in <>, the Quick Start sets up the following:
14 |
15 | * A highly available architecture that spans two Availability Zones.*
16 | * A VPC configured with public and private subnets, according to AWS
17 | best practices, to provide you with your own virtual network on AWS.*
18 | * In the public subnets:
19 | ** Managed network address translation (NAT) gateways to allow outbound
20 | internet access for resources in the private subnets.*
21 | ** A Linux bastion host in an Auto Scaling group to allow inbound Secure
22 | Shell (SSH) access to EC2 instances in public and private subnets.*
23 | * In the private subnets:
24 | ** .
25 | ** .
26 | // Add bullet points for any additional components that are included in the deployment. Make sure that the additional components are also represented in the architecture diagram. End each bullet with a period.
27 | * .
28 |
29 | [.small]#* The template that deploys the Quick Start into an existing VPC skips the components marked by asterisks and prompts you for your existing VPC configuration.#
30 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/partner_editable/deploy_steps.adoc:
--------------------------------------------------------------------------------
1 | === Confirm your AWS account configuration
2 |
3 | . Sign in to your AWS account at https://aws.amazon.com with an IAM user role that has the necessary permissions. For details, see link:#_planning_the_deployment[Planning the deployment] earlier in this guide.
4 | . Make sure that your AWS account is configured correctly, as discussed in the link:#_technical_requirements[Technical requirements] section.
5 |
6 | // Optional based on Marketplace listing. Not to be edited
7 | ifdef::marketplace_subscription[]
8 | === Subscribe to the {partner-product-short-name} AMI
9 |
10 | This Quick Start requires a subscription to the AMI for {partner-product-short-name} in AWS Marketplace.
11 |
12 | . Sign in to your AWS account.
13 | . Open the page for the {marketplace_listing_url}[{partner-product-short-name} AMI in AWS Marketplace^], and then choose *Continue to Subscribe*.
14 | . Review the terms and conditions for software usage, and then choose *Accept Terms*. +
15 | A confirmation page loads, and an email confirmation is sent to the account owner. For detailed subscription instructions, see the https://aws.amazon.com/marketplace/help/200799470[AWS Marketplace documentation^].
16 |
17 | . When the subscription process is complete, exit out of AWS Marketplace without further action. *Do not* provision the software from AWS Marketplace—the Quick Start deploys the AMI for you.
18 | endif::marketplace_subscription[]
19 | // \Not to be edited
20 |
21 | === Launch the Quick Start
22 | // Adapt the following warning to your Quick Start.
23 | WARNING: If you’re deploying {partner-product-short-name} into an existing VPC, make sure that your VPC has two private subnets in different Availability Zones for the workload instances and that the subnets aren’t shared. This Quick Start doesn’t support https://docs.aws.amazon.com/vpc/latest/userguide/vpc-sharing.html[shared subnets^]. These subnets require https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html[NAT gateways^] in their route tables to allow the instances to download packages and software without exposing them to the internet. Also make sure that the domain name option in the DHCP options is configured as explained in http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_DHCP_Options.html[DHCP options sets^]. You provide your VPC settings when you launch the Quick Start.
24 |
25 | Each deployment takes about {deployment_time} to complete.
26 |
27 | . Sign in to your AWS account, and choose one of the following options to launch the AWS CloudFormation template. For help with choosing an option, see link:#_deployment_options[Deployment options] earlier in this guide.
28 | +
29 | [cols="3,1"]
30 | |===
31 | ^|http://qs_launch_permalink[Deploy {partner-product-short-name} into a new VPC on AWS^]
32 | ^|http://qs_template_permalink[View template^]
33 |
34 | ^|http://qs_launch_permalink[Deploy {partner-product-short-name} into an existing VPC on AWS^]
35 | ^|http://qs_template_permalink[View template^]
36 | |===
37 | +
38 | . Check the AWS Region that’s displayed in the upper-right corner of the navigation bar, and change it if necessary. This Region is where the network infrastructure for {partner-product-short-name} is built. The template is launched in the {default_deployment_region} Region by default. For other choices, see link:#_supported_regions[Supported Regions] earlier in this guide.
39 | . On the *Create stack* page, keep the default setting for the template URL, and then choose *Next*.
40 | . On the *Specify stack details* page, change the stack name if needed. Review the parameters for the template. Provide values for the parameters that require input. For all other parameters, review the default settings and customize them as necessary. For details on each parameter, see the link:#_parameter_reference[Parameter reference] section of this guide. When you finish reviewing and customizing the parameters, choose *Next*.
41 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/partner_editable/deployment_options.adoc:
--------------------------------------------------------------------------------
1 | // Edit this placeholder text to accurately describe your architecture.
2 |
3 | This Quick Start provides two deployment options:
4 |
5 | * *Deploy {partner-product-short-name} into a new VPC*. This option builds a new AWS environment consisting of the VPC, subnets, NAT gateways, security groups, bastion hosts, and other infrastructure components. It then deploys {partner-product-short-name} into this new VPC.
6 | * *Deploy {partner-product-short-name} into an existing VPC*. This option provisions {partner-product-short-name} in your existing AWS infrastructure.
7 |
8 | The Quick Start provides separate templates for these options. It also lets you configure Classless Inter-Domain Routing (CIDR) blocks, instance types, and {partner-product-short-name} settings, as discussed later in this guide.
9 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/partner_editable/faq_troubleshooting.adoc:
--------------------------------------------------------------------------------
1 | // Add any tips or answers to anticipated questions.
2 |
3 | == FAQ
4 |
5 | *Q.* I encountered a *CREATE_FAILED* error when I launched the Quick Start.
6 |
7 | *A.* If AWS CloudFormation fails to create the stack, relaunch the template with *Rollback on failure* set to *Disabled*. This setting is under *Advanced* in the AWS CloudFormation console on the *Configure stack options* page. With this setting, the stack’s state is retained, and the instance keeps running so that you can troubleshoot the issue. (For Windows, look at the log files in `%ProgramFiles%\Amazon\EC2ConfigService` and `C:\cfn\log`.)
8 | // Customize this answer if needed. For example, if you’re deploying on Linux instances, either provide the location for log files on Linux or omit the final sentence. If the Quick Start has no EC2 instances, revise accordingly (something like "and the assets keep running").
9 |
10 | WARNING: When you set *Rollback on failure* to *Disabled*, you continue to incur AWS charges for this stack. Delete the stack when you finish troubleshooting.
11 |
12 | For more information, see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/troubleshooting.html[Troubleshooting AWS CloudFormation^].
13 |
14 | *Q.* I encountered a size-limitation error when I deployed the AWS CloudFormation templates.
15 |
16 | *A.* Launch the Quick Start templates from the links in this guide or from another S3 bucket. If you deploy the templates from a local copy on your computer or from a location other than an S3 bucket, you might encounter template-size limitations. For more information, see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html[AWS CloudFormation quotas^].
17 |
18 |
19 | == Troubleshooting
20 |
21 |
22 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/partner_editable/licenses.adoc:
--------------------------------------------------------------------------------
1 | // Include details about any licenses and how to sign up. Provide links as appropriate. If no licenses are required, clarify that. The following paragraphs provide examples of details you can provide. Remove italics, and rephrase as appropriate.
2 |
3 | _No licenses are required to deploy this Quick Start. All AWS service resources consumed during the launch of the Quick Start incur AWS service usage costs._
4 |
5 | _Some configurations of the {partner-product-short-name} Quick Start involve the use of third-party software. You are responsible for obtaining a license directly from the software vendor._
6 |
7 | _This Quick Start requires a license for {partner-product-short-name}. To use the Quick Start in your production environment, sign up for a license at . When you launch the Quick Start, place the license key in an S3 bucket and specify its location._
8 |
9 | _If you don’t have a license, the Quick Start deploys with a trial license. The trial license gives you days of free usage in a non-production environment. After this time, you can upgrade to a production license by following the instructions at ._
10 |
11 | // Or, if the deployment uses an AMI, update this paragraph. If it doesn’t, remove the paragraph.
12 | _The Quick Start requires a subscription to the Amazon Machine Image (AMI) for {partner-product-short-name}, which is available from https://aws.amazon.com/marketplace/[AWS Marketplace^]. Additional pricing, terms, and conditions may apply. For instructions, see link:#step-2.-subscribe-to-the-software-ami[step 2] in the deployment section._
13 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/partner_editable/overview_target_and_usage.adoc:
--------------------------------------------------------------------------------
1 | // Replace the content in <>
2 | // Identify your target audience and explain how/why they would use this Quick Start.
3 | //Avoid borrowing text from third-party websites (copying text from AWS service documentation is fine). Also, avoid marketing-speak, focusing instead on the technical aspect.
4 |
5 | This guide provides instructions for deploying the {partner-product-short-name} Quick Start reference architecture on the AWS Cloud.
6 |
7 | This Quick Start is for users who
8 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/partner_editable/pre-reqs.adoc:
--------------------------------------------------------------------------------
1 | // If no preperation is required, remove all content from here
2 |
3 | ==== Prepare your AWS account
4 |
5 | _Describe any setup required in the AWS account prior to template launch_
6 |
7 | ==== Prepare your {partner-company-name} account
8 |
9 | _Describe any setup required in the partner portal/account prior to template launch_
10 |
11 | ==== Prepare for the deployment
12 |
13 | _Describe any preparation required to complete the product build, such as obtaining licenses or placing files in S3_
--------------------------------------------------------------------------------
/docs/languages/docs-cn/partner_editable/product_description.adoc:
--------------------------------------------------------------------------------
1 | // Replace the content in <>
2 | // Briefly describe the software. Use consistent and clear branding.
3 | // Include the benefits of using the software on AWS, and provide details on usage scenarios.
4 |
5 |
6 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/partner_editable/regions.adoc:
--------------------------------------------------------------------------------
1 | This Quick Start supports the following Regions:
2 |
3 | * us-east-1, US East (N. Virginia) (EXAMPLE)
4 | * us-east-2, US East (Ohio) (EXAMPLE)
5 |
6 | //Full list: https://docs.aws.amazon.com/general/latest/gr/rande.html
7 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/partner_editable/service_limits.adoc:
--------------------------------------------------------------------------------
1 | // Replace the in each row to specify the number of resources used in this deployment. Remove the rows for resources that aren’t used.
2 | |===
3 | |Resource |This deployment uses
4 |
5 | // Space needed to maintain table headers
6 | |VPCs |
7 | |Elastic IP addresses |
8 | |Security groups |
9 | |AWS Identity and Access Management (IAM) roles |
10 | |Auto Scaling groups |
11 | |Application Load Balancers |
12 | |Network Load Balancers |
13 | | instances |
14 | |===
15 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/partner_editable/specialized_knowledge.adoc:
--------------------------------------------------------------------------------
1 | // Replace the content in <>
2 | // For example: “familiarity with basic concepts in networking, database operations, and data encryption” or “familiarity with .”
3 | // Include links if helpful.
4 | // You don't need to list AWS services or point to general info about AWS; the boilerplate already covers this.
5 |
6 | This Quick Start also assumes familiarity with .
7 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/translate-only/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "[]"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright [yyyy] [name of copyright owner]
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 | .
203 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/translate-only/_layout_cfn_cdk_module.adoc:
--------------------------------------------------------------------------------
1 |
2 | [.text-center]
3 | [discrete]
4 | == {partner-product-name} on the AWS Cloud
5 | :doctitle: {partner-product-name} on the AWS Cloud
6 | :!toc:
7 | [.text-left]
8 | include::../{includedir}/introduction.adoc[]
9 |
10 | == Overview
11 | include::../{includedir}/overview.adoc[]
12 |
13 |
14 | == {partner-product-name} on AWS
15 | ifndef::production_build[]
16 | _**This portion of the deployment guide is located at `docs/{specificdir}/product_description.adoc`**_
17 | [.preview_mode]
18 | |===
19 | a|
20 | endif::production_build[]
21 | include::../{specificdir}/product_description.adoc[]
22 | ifndef::production_build[]
23 | |===
24 | endif::production_build[]
25 |
26 | == AWS costs
27 | include::../{includedir}/cost.adoc[]
28 |
29 | ifndef::disable_licenses[]
30 | == Software licenses
31 | ifndef::production_build[]
32 | _**This portion of the deployment guide is located at `docs/{specificdir}/licenses.adoc`**_
33 | [.preview_mode]
34 | |===
35 | a|
36 | endif::production_build[]
37 | include::../{specificdir}/licenses.adoc[]
38 | ifndef::production_build[]
39 | |===
40 | endif::production_build[]
41 | endif::disable_licenses[]
42 |
43 | == Architecture
44 | ifndef::production_build[]
45 | _**This portion of the deployment guide is located at `docs/{specificdir}/architecture.adoc`**_
46 | [.preview_mode]
47 | |===
48 | a|
49 | endif::production_build[]
50 | include::../{specificdir}/architecture.adoc[]
51 | ifndef::production_build[]
52 | |===
53 | endif::production_build[]
54 |
55 | //== Planning the deployment
56 |
57 | //include::../{includedir}/planning_deployment.adoc[]
58 |
59 | == Planning the deployment
60 |
61 | include::../{includedir}/planning_deployment.adoc[]
62 |
63 | == Deployment steps
64 | include::../{includedir}/deployment_steps_cdk_module.adoc[]
65 |
66 | // == Parameters
67 | // include::../{generateddir}/parameters/index.adoc[]
68 |
69 | // additional_info.adoc contains 3 sections: Best Practice, Security & Other information
70 |
71 | ifndef::production_build[]
72 | _**This portion of the deployment guide is located at `docs/{specificdir}/additional_info.adoc`**_
73 | ++++
74 |
75 | ++++
76 | endif::production_build[]
77 | include::../{specificdir}/additional_info.adoc[]
78 |
79 |
80 |
81 | ifndef::production_build[]
82 | _**This portion of the deployment guide is located at `docs/{specificdir}/faq_troubleshooting.adoc`**_
83 | ++++
84 |
76 | ++++
77 | endif::production_build[]
78 |
79 | == Parameter reference
80 |
81 | === Deploy into a new VPC and new Amazon EKS cluster
82 |
83 | The full list of parameters for this entrypoint are documented in https://aws-quickstart.github.io/quickstart-amazon-eks/#_launch_into_a_new_vpc[Amazon EKS on the AWS Cloud^].
84 |
85 |
86 | === Deploy into a new Amazon EKS cluster in an existing VPC
87 |
88 | The full list of parameters for this entrypoint are documented in https://aws-quickstart.github.io/quickstart-amazon-eks/#_launch_into_an_existing_vpc[Amazon EKS on the AWS Cloud^].
89 |
90 | include::../{generateddir}/parameters/index.adoc[]
91 |
92 | == Send us feedback
93 |
94 | To post feedback, submit feature ideas, or report bugs, use the *Issues* section of the https://github.com/aws-quickstart/{quickstart-project-name}[GitHub repository^] for this Quick Start. If you want to submit code, review the https://aws-quickstart.github.io/[Quick Start Contributor’s Guide^].
95 |
96 | == Quick Start reference deployments
97 |
98 | See the https://aws.amazon.com/quickstart/[AWS Quick Start home page^].
99 |
100 |
101 | == GitHub repository
102 |
103 | See the https://github.com/aws-quickstart/{quickstart-project-name}[GitHub repository^] to download
104 | the templates and scripts for this Quick Start, post comments,
105 | and share customizations with others.
106 |
107 | '''
108 | include::../{includedir}/disclaimer.adoc[]
109 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/translate-only/cost.adoc:
--------------------------------------------------------------------------------
1 |
2 | You are responsible for the cost of the AWS services and any third-party licenses used while running this Quick Start. There is no additional cost for
3 | using the Quick Start.
4 |
5 | The AWS CloudFormation templates for Quick Starts include
6 | configuration parameters that you can customize. Some of the settings,
7 | such as the instance type, affect the cost of deployment. For cost estimates,
8 | see the pricing pages for each AWS service you use. Prices are subject to change.
9 |
10 | TIP: After you deploy the Quick Start, https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-reports-gettingstarted-turnonreports.html[create AWS Cost and Usage Reports^] to deliver billing metrics to an Amazon Simple Storage Service (Amazon S3) bucket in your account. These reports provide cost estimates based on usage throughout each month and aggregate the data at the end of the month. For more information, see https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-reports-costusage.html[What are AWS Cost and Usage Reports?^]
11 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/translate-only/deployment_steps.adoc:
--------------------------------------------------------------------------------
1 | :xrefstyle: short
2 |
3 | ifndef::production_build[]
4 | _**This portion of the deployment guide is located at `docs/{specificdir}/deploy_steps.adoc`**_
5 | ++++
6 |
13 | ++++
14 | endif::production_build[]
15 | +
16 | ifndef::custom_number_of_deploy_steps[]
17 | ifndef::no_parameters[]
18 | ifndef::parameters_as_appendix[]
19 | In the following tables, parameters are listed by category and described separately for the deployment options. When you finish reviewing and customizing the parameters, choose *Next*.
20 | +
21 | NOTE: Unless you are customizing the Quick Start templates for your own deployment projects, keep the default settings for the parameters *Quick Start S3 bucket name*, *Quick Start S3 bucket Region*, and *Quick Start S3 key prefix*. Changing these settings automatically updates code references to point to a new Quick Start location. For more information, see the https://aws-quickstart.github.io/option1.html[AWS Quick Start Contributor’s Guide^].
22 | +
23 | // Parameter tables linked in here
24 | include::../{generateddir}/parameters/index.adoc[]
25 | endif::parameters_as_appendix[]
26 | endif::no_parameters[]
27 | +
28 | . On the *Configure stack options* page, you can https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html[specify tags^] (key-value pairs) for resources in your stack and https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-console-add-tags.html[set advanced options^]. When you’re finished, choose *Next*.
29 | . On the *Review* page, review and confirm the template settings. Under *Capabilities*, select the two check boxes to acknowledge that the template creates IAM resources and might require the ability to automatically expand macros.
30 | . Choose *Create stack* to deploy the stack.
31 | ifndef::partner-product-short-name[. Monitor the status of the stack. When the status is *CREATE_COMPLETE*, the {partner-product-name} deployment is ready.]
32 | ifdef::partner-product-short-name[. Monitor the status of the stack. When the status is *CREATE_COMPLETE*, the {partner-product-short-name} deployment is ready.]
33 | . Use the values displayed in the *Outputs* tab for the stack, as shown in <>, to view the created resources.
34 |
35 | [#cfn_outputs]
36 | ifndef::partner-product-short-name[.{partner-product-name} outputs after successful deployment]
37 | ifdef::partner-product-short-name[.{partner-product-short-name} outputs after successful deployment]
38 | [link=images/cfn_outputs.png]
39 | image::../images/cfn_outputs.png[cfn_outputs,width=100%,height=100%]
40 | endif::custom_number_of_deploy_steps[]
41 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/translate-only/deployment_steps_cdk_module.adoc:
--------------------------------------------------------------------------------
1 |
2 | ifndef::production_build[]
3 | _**This portion of the deployment guide is located at `docs/{specificdir}/deploy_steps.adoc`**_
4 | ++++
5 |
12 | ++++
13 | endif::production_build[]
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/translate-only/deployment_steps_eks_module.adoc:
--------------------------------------------------------------------------------
1 | :xrefstyle: short
2 |
3 | === Prepare an existing EKS cluster
4 | NOTE: This step is only required if you launch this Quick Start into an existing Amazon EKS cluster that was not created using the https://aws-quickstart.github.io/quickstart-amazon-eks/[Amazon EKS on the AWS Cloud^] deployment. If you want to create a new EKS cluster with your deployment, skip to step 3.
5 |
6 | . Sign in to your AWS account at https://aws.amazon.com[https://aws.amazon.com^] with an IAM user role that has the necessary permissions. For details, see link:#_planning_the_deployment[Planning the deployment], earlier in this guide.
7 | . Launch the https://us-east-2.console.aws.amazon.com/cloudformation/home?region=us-east-2#/stacks/create/template?stackName=Amazon-EKS&templateURL=https://aws-quickstart.s3.us-east-1.amazonaws.com/quickstart-amazon-eks/templates/amazon-eks-entrypoint-existing-cluster.template.yaml[cluster preparation template^].
8 | . The template launches in the US East (Ohio) Region by default. To change the Region, choose another Region from the list in the upper-right corner of the navigation bar.
9 | . On the *Create stack* page, keep the default setting for the template URL, and then choose *Next*.
10 | . On the *Specify stack details* page, change the stack name if needed. Enter the name of the Amazon EKS cluster you want to deploy to in addition to the subnet IDs and security group ID associated with the cluster. These can be obtained from the EKS cluster console.
11 | . On the *Options* page, specify the key-value pairs for resources in your stack, and set advanced options. When you’re done, choose *Next*.
12 | . On the *Review* page, review and confirm your template settings. Under *Capabilities*, select the two check boxes to acknowledge that the template creates IAM resources and might require the ability to automatically expand macros.
13 | . Choose *Create stack* to deploy the stack.
14 | . Monitor the stack's status until it is *CREATE_COMPLETE*.
15 | . From the *Outputs* section of the stack, note the `KubernetesRoleArn` and `HelmRoleArn` roles.
16 | . Add the roles to the `aws-auth config` map in your cluster, specifying `system:masters` for the groups. This allows the Quick Start to manage your cluster via AWS CloudFormation. For more information, see https://docs.aws.amazon.com/eks/latest/userguide/add-user-role.html[Managing users or IAM roles for your cluster^].
17 |
18 | NOTE: Unless you are customizing the Quick Start templates for your own deployment projects, we recommend that you keep the default settings for the parameters labeled `Quick Start S3 bucket name`, `Quick Start S3 bucket
19 | Region`, and `Quick Start S3 key prefix`. Changing these parameter settings automatically updates code references to point to a new Quick Start location. For more information, see the https://aws-quickstart.github.io/option1.html[AWS Quick Start Contributor’s Guide^].
20 |
21 | include::../{specificdir}/pre-launch-steps.adoc[]
22 |
23 |
24 | === Launch the Quick Start
25 |
26 | NOTE: You are responsible for the cost of the AWS services used while running this Quick Start reference deployment. There is no additional cost for using this Quick Start. For full details, see the pricing pages for each AWS service used by this Quick Start. Prices are subject to change.
27 |
28 | . Sign in to your AWS account, and choose one of the following options to launch the AWS CloudFormation template. For help with choosing an option, see the link:#_deployment_options[Deployment options] section, earlier in this guide.
29 |
30 | [cols=3*]
31 | |===
32 | ^|{launch_new_vpc}[Deploy into a new VPC and new Amazon EKS cluster^]
33 | ^|{launch_existing_vpc}[Deploy into a new Amazon EKS cluster in an existing VPC^]
34 | ^|{launch_existing_cluster}[Deploy into an existing Amazon EKS cluster^]
35 |
36 | ^|{template_new_vpc}[View template^]
37 | ^|{template_existing_vpc}[View template^]
38 | ^|{template_existing_cluster}[View template^]
39 | |===
40 | New clusters take about 1.5 hours to deploy. Existing clusters take about {deployment_time} to deploy.
41 |
42 | WARNING: If you deploy {partner-product-short-name} into an existing VPC, ensure that any private subnets have https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html[NAT gateways^] in their route tables to allow the Quick Start to download packages and software. Also, ensure that the domain name in the DHCP options is configured. For more information, see http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_DHCP_Options.html[DHCP options sets^].
43 |
44 | [start=2]
45 | . Check the AWS Region that’s displayed in the upper-right corner of the navigation bar, and change it if necessary. This is where the network infrastructure for {partner-product-short-name} is built. The template launches in the {default_deployment_region} Region by default.
46 | . On the *Create stack* page, keep the default setting for the template URL, and then choose *Next*.
47 | . On the *Specify stack details* page, change the stack name if needed. Review the parameters for the template. Provide values for the parameters that require input. For all other parameters, review the default settings, and customize them as necessary. For details on each parameter, see the link:#_parameter_reference[Parameter reference] section of this guide. When you finish reviewing and customizing the parameters, choose *Next*.
48 |
49 | . On the *Options* page, specify the https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html[key-value pairs^] for resources in your stack, and https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-console-add-tags.html[set advanced options^]. When you’re done, choose *Next*.
50 | . On the *Review* page, review and confirm the template settings. Under *Capabilities*, select the two check boxes to acknowledge that the template creates IAM resources and might require the ability to automatically expand macros.
51 | . Choose *Create stack* to deploy the stack.
52 | ifndef::partner-product-short-name[. Monitor the status of the stack. When the status is *CREATE_COMPLETE*, the {partner-product-name} deployment is ready.]
53 | ifdef::partner-product-short-name[. Monitor the status of the stack. When the status is *CREATE_COMPLETE*, the {partner-product-short-name} deployment is ready.]
54 | . Use the values displayed in the *Outputs* tab for the stack, as shown in the following figure.
55 |
56 | [#cfn_outputs]
57 | ifndef::partner-product-short-name[.{partner-product-name} outputs after successful deployment]
58 | ifdef::partner-product-short-name[.{partner-product-short-name} outputs after successful deployment]
59 | [link=images/cfn_outputs.png]
60 | image::../images/cfn_outputs.png[cfn_outputs,width=648,height=439]
61 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/translate-only/disclaimer.adoc:
--------------------------------------------------------------------------------
1 |
2 | == Notices
3 |
4 | This document is provided for informational purposes only. It represents AWS’s current product offerings and practices as of the date of issue of this document, which are subject to change without notice. Customers are responsible for making their own independent assessment of the information in this document and any use of AWS’s products or services, each of which is provided “as is” without warranty of any kind, whether expressed or implied. This document does not create any warranties, representations, contractual commitments, conditions, or assurances from AWS, its affiliates, suppliers, or licensors. The responsibilities and liabilities of AWS to its customers are controlled by AWS agreements, and this document is not part of, nor does it modify, any agreement between AWS and its customers.
5 |
6 | The software included with this paper is licensed under the Apache License, version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License is located at http://aws.amazon.com/apache2.0/[http://aws.amazon.com/apache2.0/^] or in the accompanying "license" file. This code is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either expressed or implied. See the License for specific language governing permissions and limitations.
7 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/translate-only/index-docinfo-footer.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/translate-only/introduction.adoc:
--------------------------------------------------------------------------------
1 | [.text-center]
2 | [discrete]
3 | == Quick Start Reference Deployment
4 |
5 | // Do not change the URL below. The aws-quickstart-graphic.png icon needs to come from the aws-quickstart S3 bucket.
6 | [.text-center]
7 | image::https://aws-quickstart.s3.amazonaws.com/{quickstart-project-name}/docs/boilerplate/.images/aws-quickstart-graphic.png[QS,80,80]
8 |
9 | ifndef::production_build[]
10 | [.text-center]
11 | [discrete]
12 | === DRAFT DOCUMENT / UNOFFICIAL GUIDANCE
13 | _**This portion of the deployment guide is located at `docs/{specificdir}/__settings_.adoc`**_
14 | [.preview_mode]
15 | |===
16 | a|
17 | endif::production_build[]
18 | [.text-center]
19 | *{doc-month} {doc-year}* +
20 | ifdef::partner-contributors[]
21 | _{partner-contributors}_ +
22 | endif::partner-contributors[]
23 | ifdef::other-contributors[]
24 | _{other-contributors}_ +
25 | endif::other-contributors[]
26 | ifdef::aws-contributors[]
27 | _{aws-contributors}_ +
28 | endif::aws-contributors[]
29 | _{quickstart-contributors}_
30 | [.text-left]
31 |
32 | ifndef::production_build[]
33 | |===
34 | endif::production_build[]
35 |
36 | TIP: Visit our https://github.com/aws-quickstart/{quickstart-project-name}[GitHub repository^] for source files and to post feedback,
37 | report bugs, or submit feature ideas for this Quick Start.
38 |
39 | ifdef::partner-company-name[]
40 | [.text-left]
41 | This Quick Start was created by {partner-company-name} in collaboration with Amazon Web Services (AWS). http://aws.amazon.com/quickstart/[Quick Starts^] are automated reference deployments that use AWS CloudFormation templates to deploy key technologies on AWS, following AWS best practices.
42 | endif::[]
43 |
44 | ifndef::partner-company-name[]
45 | [.text-left]
46 | This Quick Start was created by Amazon Web Services (AWS). http://aws.amazon.com/quickstart/[Quick Starts^] are automated reference deployments that use AWS CloudFormation templates to deploy key technologies on AWS, following AWS best practices.
47 | endif::[]
48 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/translate-only/overview.adoc:
--------------------------------------------------------------------------------
1 |
2 |
3 | ifndef::production_build[]
4 | _**This portion of the deployment guide is located at `docs/{specificdir}/overview_target_and_usage.adoc`**_
5 | [.preview_mode]
6 | |===
7 | a|
8 | endif::production_build[]
9 | include::../{specificdir}/overview_target_and_usage.adoc[]
10 | ifndef::production_build[]
11 | |===
12 | endif::production_build[]
13 |
14 | ifdef::partner-company-name[]
15 | NOTE: Amazon may share user-deployment information with the AWS Partner that collaborated with AWS on the Quick Start.
16 | endif::partner-company-name[]
17 |
--------------------------------------------------------------------------------
/docs/languages/docs-cn/translate-only/planning_deployment.adoc:
--------------------------------------------------------------------------------
1 | === Specialized knowledge
2 |
3 | This deployment requires a moderate level of familiarity with AWS services. If you’re new to AWS, visit https://aws.amazon.com/getting-started/[Getting Started with AWS^] and https://aws.amazon.com/training/[Training and Certification^]. These sites provide materials for learning how to design, deploy, and operate your infrastructure and applications on the AWS Cloud.
4 |
5 | ifndef::production_build[]
6 | _**This portion of the deployment guide is located at `docs/languages/{langdir}/{specificdir}/specialized_knowledge.adoc`**_
7 | [.preview_mode]
8 | |===
9 | a|
10 | endif::production_build[]
11 | include::../{specificdir}/specialized_knowledge.adoc[]
12 | ifndef::production_build[]
13 | |===
14 | endif::production_build[]
15 |
16 | === AWS account
17 |
18 | If you don’t already have an AWS account, create one at https://aws.amazon.com/[https://aws.amazon.com^] by following the on-screen instructions. Part of the sign-up process involves receiving a phone call and entering a PIN using the phone keypad.
19 |
20 | Your AWS account is automatically signed up for all AWS services. You are charged only for the services you use.
21 |
22 | ifndef::disable_requirements[]
23 | === Technical requirements
24 |
25 | Before you launch the Quick Start, review the following information and ensure that your account is properly configured. Otherwise, deployment might fail.
26 | endif::disable_requirements[]
27 |
28 | ==== Resource quotas
29 | If necessary, request https://console.aws.amazon.com/servicequotas/home?region=us-east-2#!/[service quota increases^] for the following resources. You might need to request increases if your existing deployment currently uses these resources and if this Quick Start deployment could result in exceeding the default quotas. The https://console.aws.amazon.com/servicequotas/home?region=us-east-2#!/[Service Quotas console^] displays your usage and quotas for some aspects of some services. For more information, see https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html[What is Service Quotas?^] and https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html[AWS service quotas^].
30 |
31 | ifndef::production_build[]
32 | _**This portion of the deployment guide is located at `docs/languages/{langdir}/{specificdir}/service_limits.adoc`**_
33 | ++++
34 |
41 | ++++
42 | endif::production_build[]
43 | include::../../../{generateddir}/services/metadata.adoc[]
44 |
45 | ifndef::disable_regions[]
46 | // We can also pull in Regions automatically.
47 | ==== Supported Regions
48 |
49 | ifdef::template_not_all_regions[]
50 | This deployment includes , which isn’t currently supported in https://aws.amazon.com/about-aws/global-infrastructure/[all AWS Regions^].
51 | endif::template_not_all_regions[]
52 |
53 | ifdef::auto_populate_regions[]
54 | The following Regions are currently supported by this Quick Start.
55 | include::../{generateddir}/regions/index.adoc[]
56 | endif::auto_populate_regions[]
57 |
58 | ifndef::auto_populate_regions[]
59 |
60 | ifndef::production_build[]
61 | _**This portion of the deployment guide is located at `docs/languages/{langdir}/{specificdir}/regions.adoc`**_
62 | ++++
63 |