Skip to content

Commit

Permalink
Add second media IP for TC and doc fixes (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwilkie authored Jan 24, 2024
1 parent 81beac3 commit 47291ad
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion infrastructure/somleng/core/nat_instance.tf
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,14 @@ resource "aws_route" "telecom_cambodia_signalling" {
network_interface_id = aws_network_interface.nat_instance.id
}


resource "aws_route" "telecom_cambodia_media" {
route_table_id = module.vpc.private_route_table_ids[0]
destination_cidr_block = "203.223.42.132/32"
network_interface_id = aws_network_interface.nat_instance.id
}

resource "aws_route" "telecom_cambodia_media2" {
route_table_id = module.vpc.private_route_table_ids[0]
destination_cidr_block = "203.223.42.148/32"
network_interface_id = aws_network_interface.nat_instance.id
}
12 changes: 6 additions & 6 deletions public/website/docs.html
Original file line number Diff line number Diff line change
Expand Up @@ -731,11 +731,11 @@ <h4>
<ul>
<li>
Set <strong><code>accountSid</code></strong> and <strong><code>authToken</code></strong> from the
account you created in step <a href="#verify-tutorial-step-1" class="link">Step 1</a>.
account you created in <a href="#verify-tutorial-step-1" class="link">Step 1</a>.
</li>
<li>
Set <strong><code>verificationServiceSid</code></strong> from the verification service you created
in step <a href="#verify-tutorial-step-3" class="link">Step 3</a>.
in <a href="#verify-tutorial-step-3" class="link">Step 3</a>.
</li>
</ul>

Expand Down Expand Up @@ -786,7 +786,7 @@ <h4>
</p>

<p>
Re-run the code in step <a href="#verify-tutorial-step-8" class="link">Step 8</a>, but this time
Re-run the code in <a href="#verify-tutorial-step-8" class="link">Step 8</a>, but this time
update the
channel to <strong><code>call</code></strong> as shown below. Remember to also set the
<strong><code>accountSid</code></strong>, <strong><code>authToken</code></strong> and
Expand Down Expand Up @@ -815,7 +815,7 @@ <h4>

<p>
After running the code in the previous step, you should receive a call to the softphone you
configured in step <a href="#verify-tutorial-step-7" class="link">Step 7</a>.
configured in <a href="#verify-tutorial-step-7" class="link">Step 7</a>.
Answer the call to hear the verification code.
</p>

Expand Down Expand Up @@ -847,11 +847,11 @@ <h4>
<ol type="a">
<li>
Set <strong><code>accountSid</code></strong> and <strong><code>authToken</code></strong> from the
account you created in step <a href="#verify-tutorial-step-1" class="link">Step 1</a>.
account you created in <a href="#verify-tutorial-step-1" class="link">Step 1</a>.
</li>
<li>
Set <strong><code>verificationServiceSid</code></strong> from the verification service you created
in step <a href="#verify-tutorial-step-3" class="link">Step 3</a>.
in <a href="#verify-tutorial-step-3" class="link">Step 3</a>.
</li>
<li>
Set <strong><code>verificationCode</code></strong> from the verification code received via SMS or
Expand Down

0 comments on commit 47291ad

Please sign in to comment.