1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 21:46:22 +01:00
Files
openshift-docs/modules/installation-cloudformation-dns.adoc
2024-09-19 19:07:03 +00:00

33 lines
1018 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.17/upi/aws/cloudformation/02_cluster_infra.yaml[]
----
====
[IMPORTANT]
====
If you are deploying your cluster to an AWS government or secret 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
----
====