diff --git a/website/api/hooks/custom/index.js b/website/api/hooks/custom/index.js index 9b2a129c82..c686884144 100644 --- a/website/api/hooks/custom/index.js +++ b/website/api/hooks/custom/index.js @@ -89,6 +89,8 @@ will be disabled and/or hidden in the UI. fromName: sails.config.custom.fromName, }); // Send a request to our Algolia crawler to reindex the website. + // FUTURE: If this breaks again, use the Platform model to store when the website was last crawled + // (platform.algoliaLastCrawledWebsiteAt), and then only send a request if it was <30m ago, then remove dyno check. if(sails.config.environment === 'production' && process.env.DYNO === 'web.1'){ sails.helpers.http.post.with({ url: `https://crawler.algolia.com/api/1/crawlers/${sails.config.custom.algoliaCrawlerId}/reindex`, diff --git a/website/assets/images/integration-logo-ansible-36x36@2x.png b/website/assets/images/integration-logo-ansible-36x36@2x.png new file mode 100644 index 0000000000..13f3a1a2e9 Binary files /dev/null and b/website/assets/images/integration-logo-ansible-36x36@2x.png differ diff --git a/website/views/pages/homepage.ejs b/website/views/pages/homepage.ejs index 93b6325544..68abfd5dcb 100644 --- a/website/views/pages/homepage.ejs +++ b/website/views/pages/homepage.ejs @@ -133,14 +133,19 @@
Custom IT workflows + <% if(['vm', 'eo-security'].includes(primaryBuyingSituation)){%> + Kick off automations +

Use git, yaml, webhooks, file carving, vuln feeds, the REST API, and a GUI for security automations

+ <% } else { %> Custom IT workflows

Use git, yaml, webhooks, realtime device access, file carving, vuln feeds, the REST API, and a GUI for IT automation.

+ <% } %>
IT ticketing - IT ticketing + <%- ['vm', 'eo-security'].includes(primaryBuyingSituation) ? 'Case management' : 'IT ticketing'%>

Automate ticketing with Jira, ServiceNow, or integrate your own system.

@@ -155,9 +160,15 @@
- Scripting - Scripting -

Easily connect Munki, Chef, Ansible, and Puppet or deploy your own scripts.

+ <% if(['vm', 'eo-security'].includes(primaryBuyingSituation)){%> + Remediations + Remediations +

Easily connect Ansible, Chef, or deploy your own runbooks to install missing security agents and harden endpoints.

+ <% } else { %> + Scripting + Scripting +

Easily connect Munki, Chef, Ansible, and Puppet or deploy your own scripts.

+ <% } %>