1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-07 09:46:53 +01:00
Files
openshift-docs/modules/installation-cloudformation-dns.adoc
2020-10-20 16:51:42 -04:00

33 lines
1007 B
Plaintext

// Module included in the following assemblies:
//
// * installing/installing_aws/installing-aws-user-infra.adoc
// * installing/installing_aws/installing-restricted-networks-aws.adoc
[id="installation-cloudformation-dns_{context}"]
= CloudFormation template for the network and load balancers
You can use the following CloudFormation template to deploy the networking
objects and load balancers that you need for your {product-title} cluster.
.CloudFormation template for the network and load balancers
[%collapsible]
====
[source,yaml]
----
include::https://raw.githubusercontent.com/openshift/installer/release-4.6/upi/aws/cloudformation/02_cluster_infra.yaml[]
----
====
[IMPORTANT]
====
If you are deploying your cluster to an AWS government region, you must update the `InternalApiServerRecord` to use `CNAME` records. Records of type `ALIAS` are not supported for AWS government regions. For example:
[source,yaml]
----
Type: CNAME
TTL: 10
ResourceRecords:
- !GetAtt IntApiElb.DNSName
----
====