-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
executable file
·1376 lines (1251 loc) · 78.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Immutability Changes Everything</title>
<meta name="description" content="" />
<meta name="keywords" content="immutability secrets management vault blockchain wallet hashicorp" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Bootstrap CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<!-- Font Awesome CSS -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Include all css plugins (below), or include individual files as needed -->
<link href="assets/css/flickity.min.css" rel="stylesheet" type="text/css">
<link href="assets/css/magnific-popup.css" rel="stylesheet" type="text/css">
<!-- Theme CSS -->
<link href="assets/css/theme.css" rel="stylesheet" type="text/css">
<link href="assets/css/style.css" rel="stylesheet" type="text/css">
<!-- Color Scheme CSS -->
<link href="assets/css/color_blue.css" rel="stylesheet" type="text/css">
</head>
<body id="page-top">
<!-- Header Start -->
<header class="header-dark fixed-top">
<div class="container">
<div class="row">
<div class="col-lg-3 navbar-header">
<a class="navbar-brand page-scroll" href="#page-top">
<img src="assets/images/logo-text-black.png" alt="" class="logo-text-dark">
<img src="assets/images/logo-text-white.png" alt="" class="logo-text-light">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar-header"
aria-controls="navbar-header" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<!-- //.col-lg-3 -->
<div class="col-lg-9 navbar-wrapper justify-content-end">
<div id="navigation" class="navbar navbar-expand-lg">
<div class="collapse navbar-collapse" id="navbar-header">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link page-scroll" href="#about">Concept</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#team">Team</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#contact">Contact</a>
</li>
</ul>
</div>
<!-- //.navbar-collapse -->
</div>
<!-- //.navbar -->
</div>
<!-- //.col-lg-9 -->
</div>
<!-- //.row -->
</div>
<!-- //.container -->
</header>
<!-- //Header End -->
<!-- Section - Home Start -->
<section id="home" class="bg-cover bg-gray bg-overlay-black-6 h-100 w-100">
<div class="container h-100">
<div class="row align-items-center h-100 justify-content-center">
<div class="col-lg-8 pt-3 text-center">
<span class="d-block font-alt font-w-600 letter-spacing-2 text-medium text-uppercase text-white">
Introducing Immutability
</span>
<span class="bg-base-color d-inline-block mt-4 sep-line-medium-thick"></span>
<h2
class="font-alt font-w-600 letter-spacing-2 mb-3 mt-3 text-uppercase text-white title-xs-extra-large title-extra-large-3">
Secrets-Oriented Workflows and Infrastructure
</h2>
<span class="d-block font-alt letter-spacing-2 mb-3 mt-4 text-large text-uppercase text-white">
Immutability is developing a set of tools and protocols to curate and provision credentials,
access controls and secrets-oriented infrastructure.
</span>
<a href="#about" class="page-scroll btn btn-base-color btn-large btn-shadow mr-0 mt-4">Explore
Now</a>
</div>
<!-- //.col-lg-8 -->
</div>
<!-- //.row -->
</div>
<!-- //.container -->
</section>
<!-- //Section - Home End -->
<!-- Intro Start -->
<div class="intro bg-gray-light p-5">
<div class="container py-5">
<div class="row justify-content-center py-4">
<div class="col-lg-8 text-center">
<p class="font-alt mb-0 text-xs-large text-extra-large">
Managing fine-grain access controls and the provisioning of application credentials at scale has
always been fraught with complexities.
Add to that the compliance challenges of operating in a regulated environment and the
operational constraints of heterogenous environments (cloud and on-prem) and things get harder.
And now we have blockchain...
</p>
<span class="bg-base-color d-inline-block mt-4 sep-line-long"></span>
</div>
<!-- //.col-lg-8 -->
</div>
<!-- //.row -->
</div>
<!-- //.container -->
</div>
<!-- //Intro End -->
<!-- Section - About Start -->
<section id="about" class="bg-white">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-lg-9 pb-lg-4 text-center">
<h3 class="font-alt font-w-600 letter-spacing-2 text-uppercase title-xs-small title-extra-large-2">
Concept</h3>
<p class="font-alt mb-0 mt-3 text-xs-large text-uppercase title-medium">The Primacy of
Secrets-Oriented Infrastructure and Workflows</p>
<span class="bg-base-color d-inline-block mt-4 sep-line-thick-long"></span>
</div>
<!-- //.col-lg-9 -->
</div>
<!-- //.row -->
<div class="row">
<div class="col-lg-6">
<div class="carousel-custom" data-pagedots="true" data-draggable="false" data-autoplay="5000">
<div class="carousel-cell w-100">
<img src="assets/images/about-1.jpg" alt="" class="img-fluid box-shadow-shallow rounded" />
</div>
<!-- //.carousel-cell -->
<div class="carousel-cell w-100">
<img src="assets/images/about-2.jpg" alt="" class="img-fluid box-shadow-shallow rounded" />
</div>
<!-- //.carousel-cell -->
<div class="carousel-cell w-100">
<img src="assets/images/about-3.jpg" alt="" class="img-fluid box-shadow-shallow rounded" />
</div>
<!-- //.carousel-cell -->
</div>
<!-- //.carousel-custom -->
</div>
<!-- //.col-lg-6 -->
<div class="col-lg-6">
<div class="pl-lg-4 pt-5 pt-lg-0">
<p class="font-alt text-extra-large">The use of secrets underlies all of information technology
- both legacy and modern. Strangely enough, the workflows for managing secrets and their
access controls have rarely been effectively automated in CI/CD systems. They have often
been treated as adhoc and exceptional processes with piecemeal automation.</p>
<p class="font-alt mt-2 text-extra-large">We at Immutability believe that secrets-oriented
workflows and infrastructure should be treated as first-class citizens in any automation
landscape. So we have developed an innovative <b><i>as-code</i></b> approach to automating
the entire lifecycle of secrets, access controls and the infrastructure that supports them.
</p>
<p class="font-alt mt-2 text-extra-large">Workflows, access controls and infrastructure all
require governance. At the heart of our model is a curation mechanism that incentivizes
<i>quality</i> code committers and disincentivizes deployments that don't reflect the values
of stakeholders.
</p>
<a href="#model" class="page-scroll btn btn-base-color btn-shadow mt-1">Read More</a>
</div>
<!-- //.pl-lg-4 -->
</div>
<!-- //.col-lg-6 -->
</div>
<!-- //.row -->
</div>
<!-- //.container -->
</section>
<!-- //Section - About End -->
<!-- Section - Model Start -->
<section id="model" class="bg-cover bg-gray bg-overlay-black-6">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-lg-9 pb-lg-4 text-center text-white">
<h3 class="font-alt font-w-600 letter-spacing-2 text-uppercase title-xs-small title-extra-large-2">
The Immutability Model</h3>
<p class="font-alt mb-0 mt-3 text-xs-large text-uppercase title-medium">The main tenets of our
approach</p>
<span class="bg-base-color d-inline-block mt-4 sep-line-thick-long"></span>
</div>
<!-- //.col-lg-9 -->
</div>
<!-- //.row -->
<div class="row">
<div class="col-md-6 col-lg-4">
<div class="pl-5 position-relative">
<i
class="fa fa-rocket bg-base-color left-0 mt-1 p-3 position-absolute top-0 rounded text-white"></i>
<div class="ml-3">
<span
class="d-block font-alt letter-spacing-2 title-medium text-uppercase text-white">Automation
is Key</span>
<p class="mt-1 text-large text-white">Requests for access are scanned for correctness and
then automatically applied. Secure introduction is automated. Renewals and rotations are
automated. Even the process of moving from cold storage is automated.</p>
</div>
<!-- //.ml-3 -->
</div>
<!-- //.pl-5 -->
</div>
<!-- //.md-6 -->
<div class="col-md-6 col-lg-4 mt-5 mt-md-0">
<div class="pl-5 position-relative">
<i
class="fa fa-thumbs-o-up bg-base-color left-0 mt-1 p-3 position-absolute top-0 rounded text-white"></i>
<div class="ml-3">
<span class="d-block font-alt letter-spacing-2 title-medium text-uppercase text-white">It's
Just Git</span>
<p class="mt-1 text-large text-white">Want a new policy? Submit a pull request. Want a new
secret? Submit a pull request. Want your infrastructure to scale differently? Submit a
pull request. Everything is versioned, audited, linted and analyzed in a familar Git-Ops
flow.</p>
</div>
<!-- //.ml-3 -->
</div>
<!-- //.pl-5 -->
</div>
<!-- //.md-6 -->
<div class="col-md-6 col-lg-4 mt-5 mt-lg-0">
<div class="pl-5 position-relative">
<i
class="fa fa-star-o bg-base-color left-0 mt-1 p-3 position-absolute top-0 rounded text-white"></i>
<div class="ml-3">
<span
class="d-block font-alt letter-spacing-2 title-medium text-uppercase text-white">As-Code</span>
<p class="mt-1 text-large text-white">Policy is code. Infrastructure is code. Governance
mechanisms are code. Workflows are code. Because everything is code, the
<b><i>intent</i></b> of any action regarding the lifecycle, access and distribution of
secrets is knowable.
</p>
</div>
<!-- //.ml-3 -->
</div>
<!-- //.pl-5 -->
</div>
<!-- //.md-6 -->
<div class="col-md-6 col-lg-4 mt-5">
<div class="pl-5 position-relative">
<i
class="fa fa-shield bg-base-color left-0 mt-1 p-3 position-absolute top-0 rounded text-white"></i>
<div class="ml-3">
<span
class="d-block font-alt letter-spacing-2 title-medium text-uppercase text-white">Security</span>
<p class="mt-1 text-large text-white">Every secret is encrypted at rest and transit.
Cryptographic keys never leave secure enclaves. Access is through short-lived tokens
using fine-grained access controls. Credentials are rotated frequently. Revocation
workflows are automated so as to maintain availability.</p>
</div>
<!-- //.ml-3 -->
</div>
<!-- //.pl-5 -->
</div>
<!-- //.md-6 -->
<div class="col-md-6 col-lg-4 mt-5">
<div class="pl-5 position-relative">
<i
class="fa fa-paper-plane-o bg-base-color left-0 mt-1 p-3 position-absolute top-0 rounded text-white"></i>
<div class="ml-3">
<span class="d-block font-alt letter-spacing-2 title-medium text-uppercase text-white">Risk
is Transparent</span>
<p class="mt-1 text-large text-white">If a secret provides access to a valuable resource,
this is clearly visible in code. If a policy allowing access to that secret is risky,
the curation mechanism will make that apparent. </p>
</div>
<!-- //.ml-3 -->
</div>
<!-- //.pl-5 -->
</div>
<!-- //.md-6 -->
<div class="col-md-6 col-lg-4 mt-5">
<div class="pl-5 position-relative">
<i
class="fa fa-support bg-base-color left-0 mt-1 p-3 position-absolute top-0 rounded text-white"></i>
<div class="ml-3">
<span
class="d-block font-alt letter-spacing-2 title-medium text-uppercase text-white">Ownership
is Paramount</span>
<p class="mt-1 text-large text-white">Every secret is correlated to the owner(s) of the
resource it is connected to. Resource owners preside over the process - they approve or
reject access. Risk can be assumed at the discretion of stakeholders.</p>
</div>
<!-- //.ml-3 -->
</div>
<!-- //.pl-5 -->
</div>
<!-- //.md-6 -->
</div>
<!-- //.row -->
</div>
<!-- //.container -->
</section>
<!-- //Section - Why Us End -->
<!-- Section - Services Start -->
<section id="services" class="bg-gray-light">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-lg-9 pb-lg-4 text-center">
<h3 class="font-alt font-w-600 letter-spacing-2 text-uppercase title-xs-small title-extra-large-2">
How Can Immutability Help?</h3>
<p class="font-alt mb-0 mt-3 text-xs-large text-uppercase title-medium">While we are developing our
products, we can offer:</p>
<span class="bg-base-color d-inline-block mt-4 sep-line-thick-long"></span>
</div>
<!-- //.col-lg-9 -->
</div>
<!-- //.row -->
<div class="row">
<div class="col-md-4">
<div class="features-block text-center">
<div class="block-icon ease">
<i class="fa fa-lightbulb-o ease"></i>
</div>
<!-- //.block-icon -->
<span class="d-block font-alt letter-spacing-2 mt-4 text-uppercase title-medium">Expert
Advice</span>
<span class="bg-base-color d-inline-block mt-2 sep-line"></span>
<p class="mt-2 text-large">The Immutability team has years of experience designing, securing and
operating enterprise-class systems at scale.</p>
</div>
<!-- //.features-block -->
</div>
<!-- //.col-md-4 -->
<div class="col-md-4 mt-5 mt-md-0">
<div class="features-block text-center">
<div class="block-icon ease">
<i class="fa fa-heart-o ease"></i>
</div>
<!-- //.block-icon -->
<span class="d-block font-alt letter-spacing-2 mt-4 text-uppercase title-medium">Custom
Builds</span>
<span class="bg-base-color d-inline-block mt-2 sep-line"></span>
<p class="mt-2 text-large">The team maintains several OSS projects including HashiCorp Vault and
Terraform plugins, Ethereum and Bitcoin wallets, and static security analysis of AWS
infrastructure.</p>
</div>
<!-- //.features-block -->
</div>
<!-- //.col-md-4 -->
<div class="col-md-4 mt-5 mt-md-0">
<div class="features-block border-0 text-center">
<div class="block-icon ease">
<i class="fa fa-flask ease"></i>
</div>
<!-- //.block-icon -->
<span
class="d-block font-alt letter-spacing-2 mt-4 text-uppercase title-medium">Community</span>
<span class="bg-base-color d-inline-block mt-2 sep-line"></span>
<p class="mt-2 text-large">The League of Immutable Gentlepeople is an open community that exists
to share experiences, advice and code. Connect with us.</p>
</div>
<!-- //.features-block -->
</div>
<!-- //.col-md-4 -->
</div>
<!-- //.row -->
</div>
<!-- //.container -->
</section>
<!-- //Section - Services End -->
<!-- Section - Quote Start -->
<section id="quote" class="bg-cover bg-gray bg-overlay-black-6">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-10 text-center">
<i class="fa fa-quote-right text-base-color title-extra-large-3"></i>
<h3 class="d-block mt-4 font-alt text-white title-extra-large">We need immutability to coordinate at
a distance and we can afford immutability as storage gets cheaper...</h3>
<h3 class="d-block mt-4 font-alt text-white title-extra-large"><b><i>Immutability Changes
Everything</i></b></h3>
<span class="d-block mt-4 font-alt text-base-color title-extra-large"><a
href="http://cidrdb.org/cidr2015/Papers/CIDR15_Paper16.pdf">Pat Helland, CIDR
2015</a></span>
</div>
<!-- //.col-lg-10 -->
</div>
<!-- //.row -->
</div>
<!-- //.container -->
</section>
<!-- //Section - Quote End -->
<section id="projects" class="bg-white">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-lg-9 pb-lg-4 text-center">
<h3 class="font-alt font-w-600 letter-spacing-2 text-uppercase title-xs-small title-extra-large-2">
Code and Commentary</h3>
<p class="font-alt mb-0 mt-3 text-xs-large text-uppercase title-medium">Projects, talks and articles
by the team</p>
<span class="bg-base-color d-inline-block mt-4 sep-line-thick-long"></span>
</div>
<!-- //.col-lg-9 -->
</div>
<!-- //.row -->
<div class="row justify-content-center">
<div class="col">
<div class="timeline-item timeline-inverted">
<div class="card box-shadow">
<img src="assets/images/turtle.png" alt="" class="card-img-top img-fluid">
<div class="card-block">
<div class="p-2">
<a href="./blockchain-as-a-composable-security-context.html">
<h4 class="card-title font-alt m-0 title-large">Blockchain as a Composable
Security Context</h4>
</a>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<p class="card-text mt-2 text-large">Blockchain is a composable security context
that can be leveraged today to build trust and transparency among all the
counterparties to the software delivery process.</p>
</div>
<!-- //.p-2 -->
</div>
<!-- //.card-block -->
</div>
<!-- //.card -->
</div>
<div class="timeline clearfix py-2 py-lg-5">
<div class="timeline-item">
<div class="card box-shadow">
<img src="assets/images/history-10.jpg" alt="" class="card-img-top img-fluid">
<div class="card-block">
<div class="p-2">
<a
href="https://www.hashicorp.com/resources/vault-platform-enterprise-blockchain">
<h4 class="card-title font-alt m-0 title-large">Vault as a Platform for
Enterprise Blockchain</h4>
</a>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<p class="card-text mt-2 text-large">This talk and live demo will show how Vault
and its plugin architecture provide a framework to build blockchain wallets
for the enterprise.</p>
</div>
<!-- //.p-2 -->
</div>
<!-- //.card-block -->
</div>
<!-- //.card -->
</div>
<!-- //.timeline-item -->
<div class="timeline-item timeline-inverted">
<div class="card box-shadow">
<img src="assets/images/history-9.jpg" alt="" class="card-img-top img-fluid">
<div class="card-block">
<div class="p-2">
<a
href="https://www.hashicorp.com/blog/using-vault-to-build-an-ethereum-wallet">
<h4 class="card-title font-alt m-0 title-large">Using Vault to Build an
Ethereum Wallet</h4>
</a>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<p class="card-text mt-2 text-large">An Ethereum Wallet is a gateway to
decentralized applications on the Ethereum blockchain. It allows you to hold
and secure ether and other crypto-assets built on Ethereum, as well as
deploy and use smart contracts. This blog will look at how the two can work
seamlessly together.</p>
</div>
<!-- //.p-2 -->
</div>
<!-- //.card-block -->
</div>
<!-- //.card -->
</div>
<!-- //.timeline-item -->
<div class="timeline-item">
<div class="card box-shadow">
<img src="assets/images/history-1.jpg" alt="" class="card-img-top img-fluid">
<div class="card-block">
<div class="p-2">
<a href="https://github.com/cesar-rodriguez/terrascan">
<h4 class="card-title font-alt m-0 title-large">Terrascan</h4>
</a>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<p class="card-text mt-2 text-large">Cesar Rodriguez' collection of security and
best practice test for static code analysis of terraform templates</p>
</div>
<!-- //.p-2 -->
</div>
<!-- //.card-block -->
</div>
<!-- //.card -->
</div>
<!-- //.timeline-item -->
<div class="timeline-item timeline-inverted">
<div class="card box-shadow">
<img src="assets/images/history-2.jpg" alt="" class="card-img-top img-fluid">
<div class="card-block">
<div class="p-2">
<a href="https://github.com/zambien/terraform-provider-apigee">
<h4 class="card-title font-alt m-0 title-large">Apigee Terraform Provider
</h4>
</a>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<p class="card-text mt-2 text-large">Adam McNeely's plugin allows Terraform
deployments and management of Apigee API proxies, deployments, products,
companies, developers, apps, and target servers.</p>
</div>
<!-- //.p-2 -->
</div>
<!-- //.card-block -->
</div>
<!-- //.card -->
</div>
<!-- //.timeline-item -->
<div class="timeline-item">
<div class="card box-shadow">
<img src="assets/images/history-3.jpg" alt="" class="card-img-top img-fluid">
<div class="card-block">
<div class="p-2">
<a href="https://github.com/immutability-io/vault-ethereum">
<h4 class="card-title font-alt m-0 title-large">Vault Ethereum Plugin</h4>
</a>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<p class="card-text mt-2 text-large">A plugin that turns Vault into an Ethereum
wallet.</p>
</div>
<!-- //.p-2 -->
</div>
<!-- //.card-block -->
</div>
<!-- //.card -->
</div>
<!-- //.timeline-item -->
<div class="timeline-item timeline-inverted">
<div class="card box-shadow">
<img src="assets/images/history-4.jpg" alt="" class="card-img-top img-fluid">
<div class="card-block">
<div class="p-2">
<a href="https://github.com/immutability-io/vault-btc">
<h4 class="card-title font-alt m-0 title-large">Vault Bitcoin Plugin</h4>
</a>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<p class="card-text mt-2 text-large">A plugin that turns Vault into a Bitcoin
wallet.</p>
</div>
<!-- //.p-2 -->
</div>
<!-- //.card-block -->
</div>
<!-- //.card -->
</div>
<!-- //.timeline-item -->
<div class="timeline-item">
<div class="card box-shadow">
<img src="assets/images/history-5.jpg" alt="" class="card-img-top img-fluid">
<div class="card-block">
<div class="p-2">
<a href="https://github.com/immutability-io/trustee">
<h4 class="card-title font-alt m-0 title-large">Vault Trustee Plugin</h4>
</a>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<p class="card-text mt-2 text-large">A Vault plugin that solves for trust in a
decentralized way.</p>
</div>
<!-- //.p-2 -->
</div>
<!-- //.card-block -->
</div>
<!-- //.card -->
</div>
<!-- //.timeline-item -->
<!-- //.timeline-item -->
<div class="timeline-item">
<div class="card box-shadow">
<img src="assets/images/history-7.jpg" alt="" class="card-img-top img-fluid">
<div class="card-block">
<div class="p-2">
<a
href="https://www.linkedin.com/pulse/authenticate-vault-jwt-jeff-ploughman//">
<h4 class="card-title font-alt m-0 title-large">Authenticate to Vault with a
JWT</h4>
</a>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<p class="card-text mt-2 text-large">A Vault plugin that can perform password
grants, refresh toke or access token grants.</p>
</div>
<!-- //.p-2 -->
</div>
<!-- //.card-block -->
</div>
<!-- //.card -->
</div>
<div class="timeline-item timeline-inverted">
<div class="card box-shadow">
<img src="assets/images/history-8.jpg" alt="" class="card-img-top img-fluid">
<div class="card-block">
<div class="p-2">
<a href="https://www.linkedin.com/pulse/what-governance-jeff-ploughman/">
<h4 class="card-title font-alt m-0 title-large">Thoughts on Governance</h4>
</a>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<p class="card-text mt-2 text-large">Effective governance requires feedback:
listen, respond and let go.</p>
</div>
<!-- //.p-2 -->
</div>
<!-- //.card-block -->
</div>
<!-- //.card -->
</div>
</div>
<!-- //.timeline -->
</div>
<!-- //.col -->
</div>
<!-- //.row -->
</div>
<!-- //.container -->
</section>
<!-- //Section - History End -->
<!-- Section - Team Start -->
<section id="team" class="bg-cover bg-gray bg-overlay-black-6">
<div class="container">
<div class="row justify-content-center pb-5">
<div class="col-lg-9 pb-lg-4 text-center">
<h3
class="font-alt font-w-600 letter-spacing-2 text-white text-uppercase title-xs-small title-extra-large-2">
Meet The Team</h3>
<p class="font-alt mb-0 mt-3 text-xs-large text-white text-uppercase title-medium">The League of
Immutable Gentlepeople</p>
<span class="bg-base-color d-inline-block mt-4 sep-line-thick-long"></span>
</div>
<!-- //.col-lg-9 -->
</div>
<!-- //.row -->
<div class="row">
<div class="col-md-6 col-lg-3">
<figure class="team-block rounded">
<img src="assets/images/team-1.jpg" alt="" class="img-fluid ease rounded">
<figcaption class="ease h-100 left-0 position-absolute rounded top-0 w-100">
<div class="d-table h-100 position-relative px-4 w-100">
<div class="d-table-cell align-middle text-center">
<span
class="d-block font-alt letter-spacing-2 title-xs-small text-uppercase text-white">Jeff
Ploughman</span>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">CEO/Engineer</span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">
<a href="https://github.com/immutability-io"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-github title-large"></i>
</a>
<a href="https://twitter.com/cypherhat"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-twitter title-large"></i>
</a>
<a href="https://www.linkedin.com/in/immutability"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-linkedin title-large"></i>
</a>
<a href="mailto:[email protected]"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-envelope title-large"></i>
</a>
</span>
<!-- //.d-table-cell -->
</div>
<!-- //.d-table -->
</figcaption>
</figure>
</div>
<!-- //.col-md-6 -->
<div class="col-md-6 col-lg-3">
<figure class="team-block rounded">
<img src="assets/images/team-17.jpg" alt="" class="img-fluid ease rounded">
<figcaption class="ease h-100 left-0 position-absolute rounded top-0 w-100">
<div class="d-table h-100 position-relative px-4 w-100">
<div class="d-table-cell align-middle text-center">
<span
class="d-block font-alt letter-spacing-2 title-medium text-uppercase text-white">Matt
Callens</span>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">CTO/Engineer</span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">
<a href="https://github.com/callensm"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-github title-large"></i>
</a>
<a href="https://www.linkedin.com/in/callensmatt/"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-linkedin title-large"></i>
</a>
</span>
</div>
<!-- //.d-table-cell -->
</div>
<!-- //.d-table -->
</figcaption>
</figure>
</div>
<!-- //.col-md-6 -->
<div class="col-md-6 col-lg-3">
<figure class="team-block rounded">
<img src="assets/images/team-3.jpg" alt="" class="img-fluid ease rounded">
<figcaption class="ease h-100 left-0 position-absolute rounded top-0 w-100">
<div class="d-table h-100 position-relative px-4 w-100">
<div class="d-table-cell align-middle text-center">
<span
class="d-block font-alt letter-spacing-2 title-xs-small text-uppercase text-white">Chad
Kellerman</span>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">Contributor</span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">
<a href="https://github.com/sunckell"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-github title-large"></i>
</a>
<a href="https://www.linkedin.com/in/chad-kellerman-71991114b/"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-linkedin title-large"></i>
</a>
</span>
</div>
<!-- //.d-table-cell -->
</div>
<!-- //.d-table -->
</figcaption>
</figure>
</div>
<!-- //.col-md-6 -->
<div class="col-md-6 col-lg-3">
<figure class="team-block rounded">
<img src="assets/images/team-4.jpg" alt="" class="img-fluid ease rounded">
<figcaption class="ease h-100 left-0 position-absolute rounded top-0 w-100">
<div class="d-table h-100 position-relative px-4 w-100">
<div class="d-table-cell align-middle text-center">
<span
class="d-block font-alt letter-spacing-2 title-medium text-uppercase text-white">Juan
Martinez</span>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">Contributor</span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">
<a href="https://github.com/webjuantwo"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-github title-large"></i>
</a>
<a href="https://www.linkedin.com/in/ACoAAADi0lMBX6B-VyvvxwA6BNo_GijfEkfUCro/"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-linkedin title-large"></i>
</a>
</span>
</div>
<!-- //.d-table-cell -->
</div>
<!-- //.d-table -->
</figcaption>
</figure>
</div>
<!-- //.col-md-6 -->
</div>
<!-- //.row -->
<div class="row">
<div class="col-md-6 col-lg-3">
<figure class="team-block rounded">
<img src="assets/images/team-5.jpg" alt="" class="img-fluid ease rounded">
<figcaption class="ease h-100 left-0 position-absolute rounded top-0 w-100">
<div class="d-table h-100 position-relative px-4 w-100">
<div class="d-table-cell align-middle text-center">
<span
class="d-block font-alt letter-spacing-2 title-xs-small text-uppercase text-white">Cesar
Rodriguez</span>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">Contributor</span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">
<a href="https://github.com/cesar-rodriguez"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-github title-large"></i>
</a>
<a href="https://www.linkedin.com/in/cesar-rodriguez-6781032/"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-linkedin title-large"></i>
</a>
</span>
</div>
<!-- //.d-table-cell -->
</div>
<!-- //.d-table -->
</figcaption>
</figure>
</div>
<!-- //.col-md-6 -->
<div class="col-md-6 col-lg-3">
<figure class="team-block rounded">
<img src="assets/images/team-2.jpg" alt="" class="img-fluid ease rounded">
<figcaption class="ease h-100 left-0 position-absolute rounded top-0 w-100">
<div class="d-table h-100 position-relative px-4 w-100">
<div class="d-table-cell align-middle text-center">
<span
class="d-block font-alt letter-spacing-2 title-medium text-uppercase text-white">Scott
Hall</span>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">Consigliere</span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">
<a href="https://github.com/slumDOGE-billionaire"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-github title-large"></i>
</a>
<a href="https://www.linkedin.com/in/scotthallsosgroup/"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-linkedin title-large"></i>
</a>
<a href="mailto:[email protected]"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-envelope title-large"></i>
</a>
</span>
</div>
<!-- //.d-table-cell -->
</div>
<!-- //.d-table -->
</figcaption>
</figure>
</div>
<!-- //.col-md-6 -->
<div class="col-md-6 col-lg-3">
<figure class="team-block rounded">
<img src="assets/images/team-9.jpg" alt="" class="img-fluid ease rounded">
<figcaption class="ease h-100 left-0 position-absolute rounded top-0 w-100">
<div class="d-table h-100 position-relative px-4 w-100">
<div class="d-table-cell align-middle text-center">
<span
class="d-block font-alt letter-spacing-2 title-medium text-uppercase text-white">Dale
Shin</span>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">Contributor</span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">
<a href="https://www.linkedin.com/in/dale-shin-34610676/"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-linkedin title-large"></i>
</a>
</span>
</div>
<!-- //.d-table-cell -->
</div>
<!-- //.d-table -->
</figcaption>
</figure>
</div>
<!-- //.col-md-6 -->
<div class="col-md-6 col-lg-3">
<figure class="team-block rounded">
<img src="assets/images/team-10.jpg" alt="" class="img-fluid ease rounded">
<figcaption class="ease h-100 left-0 position-absolute rounded top-0 w-100">
<div class="d-table h-100 position-relative px-4 w-100">
<div class="d-table-cell align-middle text-center">
<span
class="d-block font-alt letter-spacing-2 title-medium text-uppercase text-white">Sean
Gahagan</span>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">Contributor</span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">
<a href="#" class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-twitter title-large"></i>
</a>
<a href="http://linkedin.com/in/sean-gahagan-817ba668"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-linkedin title-large"></i>
</a>
<a href="#" class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-envelope title-large"></i>
</a>
</span>
</div>
<!-- //.d-table-cell -->
</div>
<!-- //.d-table -->
</figcaption>
</figure>
</div>
<!-- //.col-md-6 -->
</div>
<!-- //.row -->
<div class="row">
<div class="col-md-6 col-lg-3">
<figure class="team-block rounded">
<img src="assets/images/team-11.jpg" alt="" class="img-fluid ease rounded">
<figcaption class="ease h-100 left-0 position-absolute rounded top-0 w-100">
<div class="d-table h-100 position-relative px-4 w-100">
<div class="d-table-cell align-middle text-center">
<span
class="d-block font-alt letter-spacing-2 title-medium text-uppercase text-white">Taylor
Becker</span>
<span class="bg-base-color d-inline-block mt-2 sep-line-thick"></span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">Contributor</span>
<span
class="d-block font-alt letter-spacing-2 mt-3 text-medium text-uppercase text-white">
<a href="https://github.com/tajobe"
class="ease opacity-8 text-center text-hover-base-color text-white">
<i class="fa fa-github title-large"></i>
</a>
<a href="https://twitter.com/taylorjbecker"
class="ease opacity-8 text-center text-hover-base-color text-white">