2020-05-07 03:38:38 +00:00
import EnterpriseComparison from '../../enterprise-comparison'
2020-04-24 18:52:30 +00:00
2020-05-07 00:50:26 +00:00
export default function ConsulEnterpriseComparison ( ) {
2020-04-24 18:52:30 +00:00
return (
< EnterpriseComparison
title = "When to consider Consul Enterprise"
2020-05-07 00:50:26 +00:00
itemOne = { {
title : 'Technical Complexity' ,
label : 'Open Source' ,
imageUrl : require ( './img/consul-oss.svg?url' ) ,
description :
2020-05-13 07:33:56 +00:00
'Consul Open Source enables individuals to discover services and securely manage connections between them across cloud, on-prem, and hybrid environments.' ,
2021-02-01 15:24:07 +00:00
links : [
{
text : 'View Open Source Features' ,
url : 'https://www.hashicorp.com/products/consul/pricing/' ,
type : 'outbound' ,
} ,
] ,
2020-05-07 00:50:26 +00:00
} }
itemTwo = { {
title : 'Organizational Complexity' ,
label : 'Enterprise' ,
imageUrl : require ( './img/consul-enterprise.svg?url' ) ,
description :
'Consul Enterprise provides the foundation for organizations to build an enterprise-ready service networking environment for multiple teams by enabling governance capabilities.' ,
2021-02-01 15:24:07 +00:00
links : [
{
text : 'View Cloud Features' ,
2021-02-02 14:09:16 +00:00
url :
'https://cloud.hashicorp.com/?utm_source=consul_io&utm_content=ent_comparison' ,
2021-02-01 15:24:07 +00:00
type : 'outbound' ,
} ,
{
text : 'View Self-Managed Features' ,
url : 'https://www.hashicorp.com/products/consul/pricing/' ,
type : 'outbound' ,
} ,
] ,
2020-05-07 00:50:26 +00:00
} }
2020-04-24 18:52:30 +00:00
brand = "consul"
/ >
)
}