Skip to content

Commit fd3fd3d

Browse files
committed
Update pricing page with base rate
1 parent ac223c4 commit fd3fd3d

File tree

3 files changed

+136
-122
lines changed

3 files changed

+136
-122
lines changed

content/pricing/_index.md

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,13 @@ tiers:
3333
- 500 free deployments minutes
3434
- title: Team
3535
subtitle: Collaboration for growing teams and cloud projects.
36-
iac_price: $0.37
37-
iac_unit: per resource/month
38-
iac_note:
36+
base_rate_note1: Starting at
37+
base_rate: $40
38+
base_rate_note2: /mo
39+
included_credits: 500 resource credits included
40+
iac_add: Additional credits starting at
41+
iac_price: Additional credits starting at $0.1825/mo
42+
iac_note: (with Graduated discounts based on usage)
3943
esc_price: $0.50
4044
esc_unit: per secret/month
4145
esc_note:
@@ -54,9 +58,12 @@ tiers:
5458
- Community support
5559
- title: Enterprise
5660
subtitle: Advanced cloud engineering capabilities for large teams in production.
57-
iac_price: $1.10
58-
iac_unit: per resource/month
59-
iac_note: (Volume pricing available)
61+
base_rate_note1: Starting at
62+
base_rate: $200
63+
base_rate_note2: /mo
64+
included_credits: 2000 resource credits included
65+
iac_price: Additional credits starting at $0.365/mo
66+
iac_note: (with Graduated discounts based on usage)
6067
esc_price: $0.75
6168
esc_unit: per secret/month
6269
esc_note: (Volume pricing available)
@@ -122,11 +129,23 @@ comparison_table:
122129
- header: Pulumi IaC
123130
subheader: Fully-managed IaC Platform
124131
rows:
132+
- title: Base Rate
133+
items:
134+
- content:
135+
- content: $40/mo
136+
- content: $200/mo
137+
- content: Custom
138+
- title: Included Credits
139+
items:
140+
- content: 200 resources
141+
- content: 500 resources
142+
- content: 2000 resources
143+
- content: Custom
125144
- title: Price per resource/month
126145
items:
127-
- content: 200 free
128-
- content: $0.37, after 200 free
129-
- content: $1.10 / Custom
146+
- content: $0.37
147+
- content: $0.1825/mo (plus discounts)
148+
- content: $0.365/mo (plus discounts)
130149
- content: Custom
131150
- title: Commitment pricing
132151
items:

layouts/page/pricing.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,14 @@ <h4 class="text-center">{{ $tier.title }}</h4>
6969
<p class="text-sm">{{ $tier.subtitle }}</p>
7070
</div>
7171
<div class="iac-price lg:h-20">
72-
<div class="text-center text-2xl font-semibold">{{ $tier.iac_price }}</div>
72+
<div class="text-center text-sm">{{ $tier.base_rate_note1}}</div>
73+
<div class="text-center">
74+
<span class="text-2xl">{{ $tier.base_rate }}</span>
75+
{{ $tier.base_rate_note2 }}
76+
</div>
77+
<div class="text-center text-sm font-semibold">{{ $tier.included_credits }}</div>
78+
<br />
79+
<div class="text-center text-sm">{{ $tier.iac_price }}</div>
7380
<div class="text-center text-sm">{{ $tier.iac_unit }}</div>
7481
<div class="text-center text-xs">{{ $tier.iac_note }}</div>
7582
</div>

0 commit comments

Comments
 (0)