index.html 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="icon" href="../assets/images/favicon.png">
  7. <meta name="generator" content="mkdocs-1.1, mkdocs-material-7.1.8">
  8. <title>API specification - External Secrets Operator</title>
  9. <link rel="stylesheet" href="../assets/stylesheets/main.ca7ac06f.min.css">
  10. <link rel="stylesheet" href="../assets/stylesheets/palette.f1a3b89f.min.css">
  11. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  12. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback">
  13. <style>:root{--md-text-font-family:"Roboto";--md-code-font-family:"Roboto Mono"}</style>
  14. <script>function gtag(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],gtag("js",new Date),gtag("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",function(){"undefined"!=typeof location$&&location$.subscribe(function(t){gtag("config","G-QP38TD8K7V",{page_path:t.pathname})})})</script>
  15. <script async src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V"></script>
  16. </head>
  17. <body dir="ltr" data-md-color-scheme="" data-md-color-primary="none" data-md-color-accent="none">
  18. <script>function __prefix(e){return new URL("..",location).pathname+"."+e}function __get(e,t=localStorage){return JSON.parse(t.getItem(__prefix(e)))}</script>
  19. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  20. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  21. <label class="md-overlay" for="__drawer"></label>
  22. <div data-md-component="skip">
  23. </div>
  24. <div data-md-component="announce">
  25. </div>
  26. <header class="md-header" data-md-component="header">
  27. <nav class="md-header__inner md-grid" aria-label="Header">
  28. <a href=".." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  29. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54z"/></svg>
  30. </a>
  31. <label class="md-header__button md-icon" for="__drawer">
  32. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2z"/></svg>
  33. </label>
  34. <div class="md-header__title" data-md-component="header-title">
  35. <div class="md-header__ellipsis">
  36. <div class="md-header__topic">
  37. <span class="md-ellipsis">
  38. External Secrets Operator
  39. </span>
  40. </div>
  41. <div class="md-header__topic" data-md-component="header-topic">
  42. <span class="md-ellipsis">
  43. API specification
  44. </span>
  45. </div>
  46. </div>
  47. </div>
  48. <label class="md-header__button md-icon" for="__search">
  49. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z"/></svg>
  50. </label>
  51. <div class="md-search" data-md-component="search" role="dialog">
  52. <label class="md-search__overlay" for="__search"></label>
  53. <div class="md-search__inner" role="search">
  54. <form class="md-search__form" name="search">
  55. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" data-md-state="active" required>
  56. <label class="md-search__icon md-icon" for="__search">
  57. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z"/></svg>
  58. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12z"/></svg>
  59. </label>
  60. <button type="reset" class="md-search__icon md-icon" aria-label="Clear" tabindex="-1">
  61. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"/></svg>
  62. </button>
  63. </form>
  64. <div class="md-search__output">
  65. <div class="md-search__scrollwrap" data-md-scrollfix>
  66. <div class="md-search-result" data-md-component="search-result">
  67. <div class="md-search-result__meta">
  68. Initializing search
  69. </div>
  70. <ol class="md-search-result__list"></ol>
  71. </div>
  72. </div>
  73. </div>
  74. </div>
  75. </div>
  76. <div class="md-header__source">
  77. <a href="https://github.com/external-secrets/external-secrets/" title="Go to repository" class="md-source" data-md-component="source">
  78. <div class="md-source__icon md-icon">
  79. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  80. </div>
  81. <div class="md-source__repository">
  82. External Secrets Operator
  83. </div>
  84. </a>
  85. </div>
  86. </nav>
  87. </header>
  88. <div class="md-container" data-md-component="container">
  89. <main class="md-main" data-md-component="main">
  90. <div class="md-main__inner md-grid">
  91. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  92. <div class="md-sidebar__scrollwrap">
  93. <div class="md-sidebar__inner">
  94. <nav class="md-nav md-nav--primary" aria-label="Navigation" data-md-level="0">
  95. <label class="md-nav__title" for="__drawer">
  96. <a href=".." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  97. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54z"/></svg>
  98. </a>
  99. External Secrets Operator
  100. </label>
  101. <div class="md-nav__source">
  102. <a href="https://github.com/external-secrets/external-secrets/" title="Go to repository" class="md-source" data-md-component="source">
  103. <div class="md-source__icon md-icon">
  104. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  105. </div>
  106. <div class="md-source__repository">
  107. External Secrets Operator
  108. </div>
  109. </a>
  110. </div>
  111. <ul class="md-nav__list" data-md-scrollfix>
  112. <li class="md-nav__item">
  113. <a href=".." class="md-nav__link">
  114. Introduction
  115. </a>
  116. </li>
  117. <li class="md-nav__item">
  118. <a href="../api-overview/" class="md-nav__link">
  119. Overview
  120. </a>
  121. </li>
  122. <li class="md-nav__item md-nav__item--nested">
  123. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_3" type="checkbox" id="__nav_3" >
  124. <label class="md-nav__link" for="__nav_3">
  125. API Types
  126. <span class="md-nav__icon md-icon"></span>
  127. </label>
  128. <nav class="md-nav" aria-label="API Types" data-md-level="1">
  129. <label class="md-nav__title" for="__nav_3">
  130. <span class="md-nav__icon md-icon"></span>
  131. API Types
  132. </label>
  133. <ul class="md-nav__list" data-md-scrollfix>
  134. <li class="md-nav__item">
  135. <a href="../api-externalsecret/" class="md-nav__link">
  136. ExternalSecret
  137. </a>
  138. </li>
  139. <li class="md-nav__item">
  140. <a href="../api-secretstore/" class="md-nav__link">
  141. SecretStore
  142. </a>
  143. </li>
  144. <li class="md-nav__item">
  145. <a href="../api-clustersecretstore/" class="md-nav__link">
  146. ClusterSecretStore
  147. </a>
  148. </li>
  149. </ul>
  150. </nav>
  151. </li>
  152. <li class="md-nav__item md-nav__item--nested">
  153. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_4" type="checkbox" id="__nav_4" >
  154. <label class="md-nav__link" for="__nav_4">
  155. Guides
  156. <span class="md-nav__icon md-icon"></span>
  157. </label>
  158. <nav class="md-nav" aria-label="Guides" data-md-level="1">
  159. <label class="md-nav__title" for="__nav_4">
  160. <span class="md-nav__icon md-icon"></span>
  161. Guides
  162. </label>
  163. <ul class="md-nav__list" data-md-scrollfix>
  164. <li class="md-nav__item">
  165. <a href="../guides-introduction/" class="md-nav__link">
  166. Introduction
  167. </a>
  168. </li>
  169. <li class="md-nav__item">
  170. <a href="../guides-getting-started/" class="md-nav__link">
  171. Getting started
  172. </a>
  173. </li>
  174. <li class="md-nav__item">
  175. <a href="../guides-templating/" class="md-nav__link">
  176. Advanced Templating
  177. </a>
  178. </li>
  179. <li class="md-nav__item">
  180. <a href="../guides-all-keys-one-secret/" class="md-nav__link">
  181. All keys, One secret
  182. </a>
  183. </li>
  184. <li class="md-nav__item">
  185. <a href="../guides-common-k8s-secret-types/" class="md-nav__link">
  186. Common K8S Secret Types
  187. </a>
  188. </li>
  189. <li class="md-nav__item">
  190. <a href="../guides-multi-tenancy/" class="md-nav__link">
  191. Multi Tenancy
  192. </a>
  193. </li>
  194. <li class="md-nav__item">
  195. <a href="../guides-metrics/" class="md-nav__link">
  196. Metrics
  197. </a>
  198. </li>
  199. </ul>
  200. </nav>
  201. </li>
  202. <li class="md-nav__item md-nav__item--nested">
  203. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5" type="checkbox" id="__nav_5" >
  204. <label class="md-nav__link" for="__nav_5">
  205. Provider
  206. <span class="md-nav__icon md-icon"></span>
  207. </label>
  208. <nav class="md-nav" aria-label="Provider" data-md-level="1">
  209. <label class="md-nav__title" for="__nav_5">
  210. <span class="md-nav__icon md-icon"></span>
  211. Provider
  212. </label>
  213. <ul class="md-nav__list" data-md-scrollfix>
  214. <li class="md-nav__item md-nav__item--nested">
  215. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_1" type="checkbox" id="__nav_5_1" >
  216. <label class="md-nav__link" for="__nav_5_1">
  217. AWS
  218. <span class="md-nav__icon md-icon"></span>
  219. </label>
  220. <nav class="md-nav" aria-label="AWS" data-md-level="2">
  221. <label class="md-nav__title" for="__nav_5_1">
  222. <span class="md-nav__icon md-icon"></span>
  223. AWS
  224. </label>
  225. <ul class="md-nav__list" data-md-scrollfix>
  226. <li class="md-nav__item">
  227. <a href="../provider-aws-secrets-manager/" class="md-nav__link">
  228. Secrets Manager
  229. </a>
  230. </li>
  231. <li class="md-nav__item">
  232. <a href="../provider-aws-parameter-store/" class="md-nav__link">
  233. Parameter Store
  234. </a>
  235. </li>
  236. </ul>
  237. </nav>
  238. </li>
  239. <li class="md-nav__item md-nav__item--nested">
  240. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_2" type="checkbox" id="__nav_5_2" >
  241. <label class="md-nav__link" for="__nav_5_2">
  242. Azure
  243. <span class="md-nav__icon md-icon"></span>
  244. </label>
  245. <nav class="md-nav" aria-label="Azure" data-md-level="2">
  246. <label class="md-nav__title" for="__nav_5_2">
  247. <span class="md-nav__icon md-icon"></span>
  248. Azure
  249. </label>
  250. <ul class="md-nav__list" data-md-scrollfix>
  251. <li class="md-nav__item">
  252. <a href="../provider-azure-key-vault/" class="md-nav__link">
  253. Key Vault
  254. </a>
  255. </li>
  256. </ul>
  257. </nav>
  258. </li>
  259. <li class="md-nav__item md-nav__item--nested">
  260. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_3" type="checkbox" id="__nav_5_3" >
  261. <label class="md-nav__link" for="__nav_5_3">
  262. Google
  263. <span class="md-nav__icon md-icon"></span>
  264. </label>
  265. <nav class="md-nav" aria-label="Google" data-md-level="2">
  266. <label class="md-nav__title" for="__nav_5_3">
  267. <span class="md-nav__icon md-icon"></span>
  268. Google
  269. </label>
  270. <ul class="md-nav__list" data-md-scrollfix>
  271. <li class="md-nav__item">
  272. <a href="../provider-google-secrets-manager/" class="md-nav__link">
  273. Secrets Manager
  274. </a>
  275. </li>
  276. </ul>
  277. </nav>
  278. </li>
  279. <li class="md-nav__item md-nav__item--nested">
  280. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_4" type="checkbox" id="__nav_5_4" >
  281. <label class="md-nav__link" for="__nav_5_4">
  282. IBM
  283. <span class="md-nav__icon md-icon"></span>
  284. </label>
  285. <nav class="md-nav" aria-label="IBM" data-md-level="2">
  286. <label class="md-nav__title" for="__nav_5_4">
  287. <span class="md-nav__icon md-icon"></span>
  288. IBM
  289. </label>
  290. <ul class="md-nav__list" data-md-scrollfix>
  291. <li class="md-nav__item">
  292. <a href="../provider-ibm-secrets-manager/" class="md-nav__link">
  293. Secrets Manager
  294. </a>
  295. </li>
  296. </ul>
  297. </nav>
  298. </li>
  299. <li class="md-nav__item">
  300. <a href="../provider-hashicorp-vault/" class="md-nav__link">
  301. HashiCorp Vault
  302. </a>
  303. </li>
  304. <li class="md-nav__item md-nav__item--nested">
  305. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_6" type="checkbox" id="__nav_5_6" >
  306. <label class="md-nav__link" for="__nav_5_6">
  307. Yandex
  308. <span class="md-nav__icon md-icon"></span>
  309. </label>
  310. <nav class="md-nav" aria-label="Yandex" data-md-level="2">
  311. <label class="md-nav__title" for="__nav_5_6">
  312. <span class="md-nav__icon md-icon"></span>
  313. Yandex
  314. </label>
  315. <ul class="md-nav__list" data-md-scrollfix>
  316. <li class="md-nav__item">
  317. <a href="../provider-yandex-lockbox/" class="md-nav__link">
  318. Lockbox
  319. </a>
  320. </li>
  321. </ul>
  322. </nav>
  323. </li>
  324. </ul>
  325. </nav>
  326. </li>
  327. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  328. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_6" type="checkbox" id="__nav_6" checked>
  329. <label class="md-nav__link" for="__nav_6">
  330. References
  331. <span class="md-nav__icon md-icon"></span>
  332. </label>
  333. <nav class="md-nav" aria-label="References" data-md-level="1">
  334. <label class="md-nav__title" for="__nav_6">
  335. <span class="md-nav__icon md-icon"></span>
  336. References
  337. </label>
  338. <ul class="md-nav__list" data-md-scrollfix>
  339. <li class="md-nav__item md-nav__item--active">
  340. <input class="md-nav__toggle md-toggle" data-md-toggle="toc" type="checkbox" id="__toc">
  341. <a href="./" class="md-nav__link md-nav__link--active">
  342. API specification
  343. </a>
  344. </li>
  345. </ul>
  346. </nav>
  347. </li>
  348. <li class="md-nav__item md-nav__item--nested">
  349. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_7" type="checkbox" id="__nav_7" >
  350. <label class="md-nav__link" for="__nav_7">
  351. Contributing
  352. <span class="md-nav__icon md-icon"></span>
  353. </label>
  354. <nav class="md-nav" aria-label="Contributing" data-md-level="1">
  355. <label class="md-nav__title" for="__nav_7">
  356. <span class="md-nav__icon md-icon"></span>
  357. Contributing
  358. </label>
  359. <ul class="md-nav__list" data-md-scrollfix>
  360. <li class="md-nav__item">
  361. <a href="../contributing-devguide/" class="md-nav__link">
  362. Developer guide
  363. </a>
  364. </li>
  365. <li class="md-nav__item">
  366. <a href="../contributing-process/" class="md-nav__link">
  367. Contributing Process
  368. </a>
  369. </li>
  370. <li class="md-nav__item">
  371. <a href="../contributing-coc/" class="md-nav__link">
  372. Code of Conduct
  373. </a>
  374. </li>
  375. </ul>
  376. </nav>
  377. </li>
  378. <li class="md-nav__item">
  379. <a href="../deprecation-policy/" class="md-nav__link">
  380. Deprecation Policy
  381. </a>
  382. </li>
  383. </ul>
  384. </nav>
  385. </div>
  386. </div>
  387. </div>
  388. <div class="md-content" data-md-component="content">
  389. <article class="md-content__inner md-typeset">
  390. <a href="https://github.com/external-secrets/external-secrets/edit/master/docs/spec.md" title="Edit this page" class="md-content__button md-icon">
  391. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.71 7.04c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.37-.39-1.02-.39-1.41 0l-1.84 1.83 3.75 3.75M3 17.25V21h3.75L17.81 9.93l-3.75-3.75L3 17.25z"/></svg>
  392. </a>
  393. <h1>API specification</h1>
  394. <p>Packages:</p>
  395. <ul>
  396. <li>
  397. <a href="#external-secrets.io%2fv1alpha1">external-secrets.io/v1alpha1</a>
  398. </li>
  399. </ul>
  400. <h2 id="external-secrets.io/v1alpha1">external-secrets.io/v1alpha1</h2>
  401. <p>
  402. <p>Package v1alpha1 contains resources for external-secrets</p>
  403. </p>
  404. <p>Resource Types:
  405. <ul></ul>
  406. <h3 id="external-secrets.io/v1alpha1.AWSAuth">AWSAuth
  407. </h3>
  408. <p>
  409. (<em>Appears on:</em>
  410. <a href="#external-secrets.io/v1alpha1.AWSProvider">AWSProvider</a>)
  411. </p>
  412. <p>
  413. <p>AWSAuth tells the controller how to do authentication with aws.
  414. Only one of secretRef or jwt can be specified.
  415. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  416. </p>
  417. <table>
  418. <thead>
  419. <tr>
  420. <th>Field</th>
  421. <th>Description</th>
  422. </tr>
  423. </thead>
  424. <tbody>
  425. <tr>
  426. <td>
  427. <code>secretRef</code></br>
  428. <em>
  429. <a href="#external-secrets.io/v1alpha1.AWSAuthSecretRef">
  430. AWSAuthSecretRef
  431. </a>
  432. </em>
  433. </td>
  434. <td>
  435. <em>(Optional)</em>
  436. </td>
  437. </tr>
  438. <tr>
  439. <td>
  440. <code>jwt</code></br>
  441. <em>
  442. <a href="#external-secrets.io/v1alpha1.AWSJWTAuth">
  443. AWSJWTAuth
  444. </a>
  445. </em>
  446. </td>
  447. <td>
  448. <em>(Optional)</em>
  449. </td>
  450. </tr>
  451. </tbody>
  452. </table>
  453. <h3 id="external-secrets.io/v1alpha1.AWSAuthSecretRef">AWSAuthSecretRef
  454. </h3>
  455. <p>
  456. (<em>Appears on:</em>
  457. <a href="#external-secrets.io/v1alpha1.AWSAuth">AWSAuth</a>)
  458. </p>
  459. <p>
  460. <p>AWSAuthSecretRef holds secret references for AWS credentials
  461. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  462. </p>
  463. <table>
  464. <thead>
  465. <tr>
  466. <th>Field</th>
  467. <th>Description</th>
  468. </tr>
  469. </thead>
  470. <tbody>
  471. <tr>
  472. <td>
  473. <code>accessKeyIDSecretRef</code></br>
  474. <em>
  475. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  476. </em>
  477. </td>
  478. <td>
  479. <p>The AccessKeyID is used for authentication</p>
  480. </td>
  481. </tr>
  482. <tr>
  483. <td>
  484. <code>secretAccessKeySecretRef</code></br>
  485. <em>
  486. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  487. </em>
  488. </td>
  489. <td>
  490. <p>The SecretAccessKey is used for authentication</p>
  491. </td>
  492. </tr>
  493. </tbody>
  494. </table>
  495. <h3 id="external-secrets.io/v1alpha1.AWSJWTAuth">AWSJWTAuth
  496. </h3>
  497. <p>
  498. (<em>Appears on:</em>
  499. <a href="#external-secrets.io/v1alpha1.AWSAuth">AWSAuth</a>)
  500. </p>
  501. <p>
  502. <p>Authenticate against AWS using service account tokens.</p>
  503. </p>
  504. <table>
  505. <thead>
  506. <tr>
  507. <th>Field</th>
  508. <th>Description</th>
  509. </tr>
  510. </thead>
  511. <tbody>
  512. <tr>
  513. <td>
  514. <code>serviceAccountRef</code></br>
  515. <em>
  516. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  517. </em>
  518. </td>
  519. <td>
  520. </td>
  521. </tr>
  522. </tbody>
  523. </table>
  524. <h3 id="external-secrets.io/v1alpha1.AWSProvider">AWSProvider
  525. </h3>
  526. <p>
  527. (<em>Appears on:</em>
  528. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  529. </p>
  530. <p>
  531. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  532. </p>
  533. <table>
  534. <thead>
  535. <tr>
  536. <th>Field</th>
  537. <th>Description</th>
  538. </tr>
  539. </thead>
  540. <tbody>
  541. <tr>
  542. <td>
  543. <code>service</code></br>
  544. <em>
  545. <a href="#external-secrets.io/v1alpha1.AWSServiceType">
  546. AWSServiceType
  547. </a>
  548. </em>
  549. </td>
  550. <td>
  551. <p>Service defines which service should be used to fetch the secrets</p>
  552. </td>
  553. </tr>
  554. <tr>
  555. <td>
  556. <code>auth</code></br>
  557. <em>
  558. <a href="#external-secrets.io/v1alpha1.AWSAuth">
  559. AWSAuth
  560. </a>
  561. </em>
  562. </td>
  563. <td>
  564. <em>(Optional)</em>
  565. <p>Auth defines the information necessary to authenticate against AWS
  566. if not set aws sdk will infer credentials from your environment
  567. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  568. </td>
  569. </tr>
  570. <tr>
  571. <td>
  572. <code>role</code></br>
  573. <em>
  574. string
  575. </em>
  576. </td>
  577. <td>
  578. <em>(Optional)</em>
  579. <p>Role is a Role ARN which the SecretManager provider will assume</p>
  580. </td>
  581. </tr>
  582. <tr>
  583. <td>
  584. <code>region</code></br>
  585. <em>
  586. string
  587. </em>
  588. </td>
  589. <td>
  590. <p>AWS Region to be used for the provider</p>
  591. </td>
  592. </tr>
  593. </tbody>
  594. </table>
  595. <h3 id="external-secrets.io/v1alpha1.AWSServiceType">AWSServiceType
  596. (<code>string</code> alias)</p></h3>
  597. <p>
  598. (<em>Appears on:</em>
  599. <a href="#external-secrets.io/v1alpha1.AWSProvider">AWSProvider</a>)
  600. </p>
  601. <p>
  602. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  603. </p>
  604. <table>
  605. <thead>
  606. <tr>
  607. <th>Value</th>
  608. <th>Description</th>
  609. </tr>
  610. </thead>
  611. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  612. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore.
  613. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  614. </td>
  615. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  616. <td><p>AWSServiceSecretsManager is the AWS SecretsManager.
  617. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  618. </td>
  619. </tr></tbody>
  620. </table>
  621. <h3 id="external-secrets.io/v1alpha1.AzureKVAuth">AzureKVAuth
  622. </h3>
  623. <p>
  624. (<em>Appears on:</em>
  625. <a href="#external-secrets.io/v1alpha1.AzureKVProvider">AzureKVProvider</a>)
  626. </p>
  627. <p>
  628. <p>Configuration used to authenticate with Azure.</p>
  629. </p>
  630. <table>
  631. <thead>
  632. <tr>
  633. <th>Field</th>
  634. <th>Description</th>
  635. </tr>
  636. </thead>
  637. <tbody>
  638. <tr>
  639. <td>
  640. <code>clientId</code></br>
  641. <em>
  642. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  643. </em>
  644. </td>
  645. <td>
  646. <p>The Azure clientId of the service principle used for authentication.</p>
  647. </td>
  648. </tr>
  649. <tr>
  650. <td>
  651. <code>clientSecret</code></br>
  652. <em>
  653. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  654. </em>
  655. </td>
  656. <td>
  657. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  658. </td>
  659. </tr>
  660. </tbody>
  661. </table>
  662. <h3 id="external-secrets.io/v1alpha1.AzureKVProvider">AzureKVProvider
  663. </h3>
  664. <p>
  665. (<em>Appears on:</em>
  666. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  667. </p>
  668. <p>
  669. <p>Configures an store to sync secrets using Azure KV.</p>
  670. </p>
  671. <table>
  672. <thead>
  673. <tr>
  674. <th>Field</th>
  675. <th>Description</th>
  676. </tr>
  677. </thead>
  678. <tbody>
  679. <tr>
  680. <td>
  681. <code>vaultUrl</code></br>
  682. <em>
  683. string
  684. </em>
  685. </td>
  686. <td>
  687. <p>Vault Url from which the secrets to be fetched from.</p>
  688. </td>
  689. </tr>
  690. <tr>
  691. <td>
  692. <code>tenantId</code></br>
  693. <em>
  694. string
  695. </em>
  696. </td>
  697. <td>
  698. <p>TenantID configures the Azure Tenant to send requests to.</p>
  699. </td>
  700. </tr>
  701. <tr>
  702. <td>
  703. <code>authSecretRef</code></br>
  704. <em>
  705. <a href="#external-secrets.io/v1alpha1.AzureKVAuth">
  706. AzureKVAuth
  707. </a>
  708. </em>
  709. </td>
  710. <td>
  711. <p>Auth configures how the operator authenticates with Azure.</p>
  712. </td>
  713. </tr>
  714. </tbody>
  715. </table>
  716. <h3 id="external-secrets.io/v1alpha1.ClusterSecretStore">ClusterSecretStore
  717. </h3>
  718. <p>
  719. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  720. </p>
  721. <table>
  722. <thead>
  723. <tr>
  724. <th>Field</th>
  725. <th>Description</th>
  726. </tr>
  727. </thead>
  728. <tbody>
  729. <tr>
  730. <td>
  731. <code>metadata</code></br>
  732. <em>
  733. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  734. Kubernetes meta/v1.ObjectMeta
  735. </a>
  736. </em>
  737. </td>
  738. <td>
  739. Refer to the Kubernetes API documentation for the fields of the
  740. <code>metadata</code> field.
  741. </td>
  742. </tr>
  743. <tr>
  744. <td>
  745. <code>spec</code></br>
  746. <em>
  747. <a href="#external-secrets.io/v1alpha1.SecretStoreSpec">
  748. SecretStoreSpec
  749. </a>
  750. </em>
  751. </td>
  752. <td>
  753. <br/>
  754. <br/>
  755. <table>
  756. <tr>
  757. <td>
  758. <code>controller</code></br>
  759. <em>
  760. string
  761. </em>
  762. </td>
  763. <td>
  764. <em>(Optional)</em>
  765. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  766. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  767. </td>
  768. </tr>
  769. <tr>
  770. <td>
  771. <code>provider</code></br>
  772. <em>
  773. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">
  774. SecretStoreProvider
  775. </a>
  776. </em>
  777. </td>
  778. <td>
  779. <p>Used to configure the provider. Only one provider may be set</p>
  780. </td>
  781. </tr>
  782. </table>
  783. </td>
  784. </tr>
  785. <tr>
  786. <td>
  787. <code>status</code></br>
  788. <em>
  789. <a href="#external-secrets.io/v1alpha1.SecretStoreStatus">
  790. SecretStoreStatus
  791. </a>
  792. </em>
  793. </td>
  794. <td>
  795. </td>
  796. </tr>
  797. </tbody>
  798. </table>
  799. <h3 id="external-secrets.io/v1alpha1.ExternalSecret">ExternalSecret
  800. </h3>
  801. <p>
  802. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  803. </p>
  804. <table>
  805. <thead>
  806. <tr>
  807. <th>Field</th>
  808. <th>Description</th>
  809. </tr>
  810. </thead>
  811. <tbody>
  812. <tr>
  813. <td>
  814. <code>metadata</code></br>
  815. <em>
  816. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  817. Kubernetes meta/v1.ObjectMeta
  818. </a>
  819. </em>
  820. </td>
  821. <td>
  822. Refer to the Kubernetes API documentation for the fields of the
  823. <code>metadata</code> field.
  824. </td>
  825. </tr>
  826. <tr>
  827. <td>
  828. <code>spec</code></br>
  829. <em>
  830. <a href="#external-secrets.io/v1alpha1.ExternalSecretSpec">
  831. ExternalSecretSpec
  832. </a>
  833. </em>
  834. </td>
  835. <td>
  836. <br/>
  837. <br/>
  838. <table>
  839. <tr>
  840. <td>
  841. <code>secretStoreRef</code></br>
  842. <em>
  843. <a href="#external-secrets.io/v1alpha1.SecretStoreRef">
  844. SecretStoreRef
  845. </a>
  846. </em>
  847. </td>
  848. <td>
  849. </td>
  850. </tr>
  851. <tr>
  852. <td>
  853. <code>target</code></br>
  854. <em>
  855. <a href="#external-secrets.io/v1alpha1.ExternalSecretTarget">
  856. ExternalSecretTarget
  857. </a>
  858. </em>
  859. </td>
  860. <td>
  861. </td>
  862. </tr>
  863. <tr>
  864. <td>
  865. <code>refreshInterval</code></br>
  866. <em>
  867. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  868. Kubernetes meta/v1.Duration
  869. </a>
  870. </em>
  871. </td>
  872. <td>
  873. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  874. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  875. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  876. </td>
  877. </tr>
  878. <tr>
  879. <td>
  880. <code>data</code></br>
  881. <em>
  882. <a href="#external-secrets.io/v1alpha1.ExternalSecretData">
  883. []ExternalSecretData
  884. </a>
  885. </em>
  886. </td>
  887. <td>
  888. <em>(Optional)</em>
  889. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  890. </td>
  891. </tr>
  892. <tr>
  893. <td>
  894. <code>dataFrom</code></br>
  895. <em>
  896. <a href="#external-secrets.io/v1alpha1.ExternalSecretDataRemoteRef">
  897. []ExternalSecretDataRemoteRef
  898. </a>
  899. </em>
  900. </td>
  901. <td>
  902. <em>(Optional)</em>
  903. <p>DataFrom is used to fetch all properties from a specific Provider data
  904. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  905. </td>
  906. </tr>
  907. </table>
  908. </td>
  909. </tr>
  910. <tr>
  911. <td>
  912. <code>status</code></br>
  913. <em>
  914. <a href="#external-secrets.io/v1alpha1.ExternalSecretStatus">
  915. ExternalSecretStatus
  916. </a>
  917. </em>
  918. </td>
  919. <td>
  920. </td>
  921. </tr>
  922. </tbody>
  923. </table>
  924. <h3 id="external-secrets.io/v1alpha1.ExternalSecretConditionType">ExternalSecretConditionType
  925. (<code>string</code> alias)</p></h3>
  926. <p>
  927. (<em>Appears on:</em>
  928. <a href="#external-secrets.io/v1alpha1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  929. </p>
  930. <p>
  931. </p>
  932. <table>
  933. <thead>
  934. <tr>
  935. <th>Value</th>
  936. <th>Description</th>
  937. </tr>
  938. </thead>
  939. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  940. <td></td>
  941. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  942. <td></td>
  943. </tr></tbody>
  944. </table>
  945. <h3 id="external-secrets.io/v1alpha1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  946. (<code>string</code> alias)</p></h3>
  947. <p>
  948. (<em>Appears on:</em>
  949. <a href="#external-secrets.io/v1alpha1.ExternalSecretTarget">ExternalSecretTarget</a>)
  950. </p>
  951. <p>
  952. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  953. </p>
  954. <table>
  955. <thead>
  956. <tr>
  957. <th>Value</th>
  958. <th>Description</th>
  959. </tr>
  960. </thead>
  961. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  962. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  963. </td>
  964. </tr><tr><td><p>&#34;None&#34;</p></td>
  965. <td><p>None does not create a Secret (future use with injector).</p>
  966. </td>
  967. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  968. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  969. </td>
  970. </tr></tbody>
  971. </table>
  972. <h3 id="external-secrets.io/v1alpha1.ExternalSecretData">ExternalSecretData
  973. </h3>
  974. <p>
  975. (<em>Appears on:</em>
  976. <a href="#external-secrets.io/v1alpha1.ExternalSecretSpec">ExternalSecretSpec</a>)
  977. </p>
  978. <p>
  979. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  980. </p>
  981. <table>
  982. <thead>
  983. <tr>
  984. <th>Field</th>
  985. <th>Description</th>
  986. </tr>
  987. </thead>
  988. <tbody>
  989. <tr>
  990. <td>
  991. <code>secretKey</code></br>
  992. <em>
  993. string
  994. </em>
  995. </td>
  996. <td>
  997. </td>
  998. </tr>
  999. <tr>
  1000. <td>
  1001. <code>remoteRef</code></br>
  1002. <em>
  1003. <a href="#external-secrets.io/v1alpha1.ExternalSecretDataRemoteRef">
  1004. ExternalSecretDataRemoteRef
  1005. </a>
  1006. </em>
  1007. </td>
  1008. <td>
  1009. </td>
  1010. </tr>
  1011. </tbody>
  1012. </table>
  1013. <h3 id="external-secrets.io/v1alpha1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  1014. </h3>
  1015. <p>
  1016. (<em>Appears on:</em>
  1017. <a href="#external-secrets.io/v1alpha1.ExternalSecretData">ExternalSecretData</a>,
  1018. <a href="#external-secrets.io/v1alpha1.ExternalSecretSpec">ExternalSecretSpec</a>)
  1019. </p>
  1020. <p>
  1021. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  1022. </p>
  1023. <table>
  1024. <thead>
  1025. <tr>
  1026. <th>Field</th>
  1027. <th>Description</th>
  1028. </tr>
  1029. </thead>
  1030. <tbody>
  1031. <tr>
  1032. <td>
  1033. <code>key</code></br>
  1034. <em>
  1035. string
  1036. </em>
  1037. </td>
  1038. <td>
  1039. <p>Key is the key used in the Provider, mandatory</p>
  1040. </td>
  1041. </tr>
  1042. <tr>
  1043. <td>
  1044. <code>version</code></br>
  1045. <em>
  1046. string
  1047. </em>
  1048. </td>
  1049. <td>
  1050. <em>(Optional)</em>
  1051. <p>Used to select a specific version of the Provider value, if supported</p>
  1052. </td>
  1053. </tr>
  1054. <tr>
  1055. <td>
  1056. <code>property</code></br>
  1057. <em>
  1058. string
  1059. </em>
  1060. </td>
  1061. <td>
  1062. <em>(Optional)</em>
  1063. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  1064. </td>
  1065. </tr>
  1066. </tbody>
  1067. </table>
  1068. <h3 id="external-secrets.io/v1alpha1.ExternalSecretSpec">ExternalSecretSpec
  1069. </h3>
  1070. <p>
  1071. (<em>Appears on:</em>
  1072. <a href="#external-secrets.io/v1alpha1.ExternalSecret">ExternalSecret</a>)
  1073. </p>
  1074. <p>
  1075. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  1076. </p>
  1077. <table>
  1078. <thead>
  1079. <tr>
  1080. <th>Field</th>
  1081. <th>Description</th>
  1082. </tr>
  1083. </thead>
  1084. <tbody>
  1085. <tr>
  1086. <td>
  1087. <code>secretStoreRef</code></br>
  1088. <em>
  1089. <a href="#external-secrets.io/v1alpha1.SecretStoreRef">
  1090. SecretStoreRef
  1091. </a>
  1092. </em>
  1093. </td>
  1094. <td>
  1095. </td>
  1096. </tr>
  1097. <tr>
  1098. <td>
  1099. <code>target</code></br>
  1100. <em>
  1101. <a href="#external-secrets.io/v1alpha1.ExternalSecretTarget">
  1102. ExternalSecretTarget
  1103. </a>
  1104. </em>
  1105. </td>
  1106. <td>
  1107. </td>
  1108. </tr>
  1109. <tr>
  1110. <td>
  1111. <code>refreshInterval</code></br>
  1112. <em>
  1113. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  1114. Kubernetes meta/v1.Duration
  1115. </a>
  1116. </em>
  1117. </td>
  1118. <td>
  1119. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  1120. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  1121. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  1122. </td>
  1123. </tr>
  1124. <tr>
  1125. <td>
  1126. <code>data</code></br>
  1127. <em>
  1128. <a href="#external-secrets.io/v1alpha1.ExternalSecretData">
  1129. []ExternalSecretData
  1130. </a>
  1131. </em>
  1132. </td>
  1133. <td>
  1134. <em>(Optional)</em>
  1135. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  1136. </td>
  1137. </tr>
  1138. <tr>
  1139. <td>
  1140. <code>dataFrom</code></br>
  1141. <em>
  1142. <a href="#external-secrets.io/v1alpha1.ExternalSecretDataRemoteRef">
  1143. []ExternalSecretDataRemoteRef
  1144. </a>
  1145. </em>
  1146. </td>
  1147. <td>
  1148. <em>(Optional)</em>
  1149. <p>DataFrom is used to fetch all properties from a specific Provider data
  1150. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  1151. </td>
  1152. </tr>
  1153. </tbody>
  1154. </table>
  1155. <h3 id="external-secrets.io/v1alpha1.ExternalSecretStatus">ExternalSecretStatus
  1156. </h3>
  1157. <p>
  1158. (<em>Appears on:</em>
  1159. <a href="#external-secrets.io/v1alpha1.ExternalSecret">ExternalSecret</a>)
  1160. </p>
  1161. <p>
  1162. </p>
  1163. <table>
  1164. <thead>
  1165. <tr>
  1166. <th>Field</th>
  1167. <th>Description</th>
  1168. </tr>
  1169. </thead>
  1170. <tbody>
  1171. <tr>
  1172. <td>
  1173. <code>refreshTime</code></br>
  1174. <em>
  1175. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  1176. Kubernetes meta/v1.Time
  1177. </a>
  1178. </em>
  1179. </td>
  1180. <td>
  1181. <p>refreshTime is the time and date the external secret was fetched and
  1182. the target secret updated</p>
  1183. </td>
  1184. </tr>
  1185. <tr>
  1186. <td>
  1187. <code>syncedResourceVersion</code></br>
  1188. <em>
  1189. string
  1190. </em>
  1191. </td>
  1192. <td>
  1193. <p>SyncedResourceVersion keeps track of the last synced version</p>
  1194. </td>
  1195. </tr>
  1196. <tr>
  1197. <td>
  1198. <code>conditions</code></br>
  1199. <em>
  1200. <a href="#external-secrets.io/v1alpha1.ExternalSecretStatusCondition">
  1201. []ExternalSecretStatusCondition
  1202. </a>
  1203. </em>
  1204. </td>
  1205. <td>
  1206. <em>(Optional)</em>
  1207. </td>
  1208. </tr>
  1209. </tbody>
  1210. </table>
  1211. <h3 id="external-secrets.io/v1alpha1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  1212. </h3>
  1213. <p>
  1214. (<em>Appears on:</em>
  1215. <a href="#external-secrets.io/v1alpha1.ExternalSecretStatus">ExternalSecretStatus</a>)
  1216. </p>
  1217. <p>
  1218. </p>
  1219. <table>
  1220. <thead>
  1221. <tr>
  1222. <th>Field</th>
  1223. <th>Description</th>
  1224. </tr>
  1225. </thead>
  1226. <tbody>
  1227. <tr>
  1228. <td>
  1229. <code>type</code></br>
  1230. <em>
  1231. <a href="#external-secrets.io/v1alpha1.ExternalSecretConditionType">
  1232. ExternalSecretConditionType
  1233. </a>
  1234. </em>
  1235. </td>
  1236. <td>
  1237. </td>
  1238. </tr>
  1239. <tr>
  1240. <td>
  1241. <code>status</code></br>
  1242. <em>
  1243. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  1244. Kubernetes core/v1.ConditionStatus
  1245. </a>
  1246. </em>
  1247. </td>
  1248. <td>
  1249. </td>
  1250. </tr>
  1251. <tr>
  1252. <td>
  1253. <code>reason</code></br>
  1254. <em>
  1255. string
  1256. </em>
  1257. </td>
  1258. <td>
  1259. <em>(Optional)</em>
  1260. </td>
  1261. </tr>
  1262. <tr>
  1263. <td>
  1264. <code>message</code></br>
  1265. <em>
  1266. string
  1267. </em>
  1268. </td>
  1269. <td>
  1270. <em>(Optional)</em>
  1271. </td>
  1272. </tr>
  1273. <tr>
  1274. <td>
  1275. <code>lastTransitionTime</code></br>
  1276. <em>
  1277. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  1278. Kubernetes meta/v1.Time
  1279. </a>
  1280. </em>
  1281. </td>
  1282. <td>
  1283. <em>(Optional)</em>
  1284. </td>
  1285. </tr>
  1286. </tbody>
  1287. </table>
  1288. <h3 id="external-secrets.io/v1alpha1.ExternalSecretTarget">ExternalSecretTarget
  1289. </h3>
  1290. <p>
  1291. (<em>Appears on:</em>
  1292. <a href="#external-secrets.io/v1alpha1.ExternalSecretSpec">ExternalSecretSpec</a>)
  1293. </p>
  1294. <p>
  1295. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  1296. There can be only one target per ExternalSecret.</p>
  1297. </p>
  1298. <table>
  1299. <thead>
  1300. <tr>
  1301. <th>Field</th>
  1302. <th>Description</th>
  1303. </tr>
  1304. </thead>
  1305. <tbody>
  1306. <tr>
  1307. <td>
  1308. <code>name</code></br>
  1309. <em>
  1310. string
  1311. </em>
  1312. </td>
  1313. <td>
  1314. <em>(Optional)</em>
  1315. <p>Name defines the name of the Secret resource to be managed
  1316. This field is immutable
  1317. Defaults to the .metadata.name of the ExternalSecret resource</p>
  1318. </td>
  1319. </tr>
  1320. <tr>
  1321. <td>
  1322. <code>creationPolicy</code></br>
  1323. <em>
  1324. <a href="#external-secrets.io/v1alpha1.ExternalSecretCreationPolicy">
  1325. ExternalSecretCreationPolicy
  1326. </a>
  1327. </em>
  1328. </td>
  1329. <td>
  1330. <em>(Optional)</em>
  1331. <p>CreationPolicy defines rules on how to create the resulting Secret
  1332. Defaults to &lsquo;Owner&rsquo;</p>
  1333. </td>
  1334. </tr>
  1335. <tr>
  1336. <td>
  1337. <code>template</code></br>
  1338. <em>
  1339. <a href="#external-secrets.io/v1alpha1.ExternalSecretTemplate">
  1340. ExternalSecretTemplate
  1341. </a>
  1342. </em>
  1343. </td>
  1344. <td>
  1345. <em>(Optional)</em>
  1346. <p>Template defines a blueprint for the created Secret resource.</p>
  1347. </td>
  1348. </tr>
  1349. </tbody>
  1350. </table>
  1351. <h3 id="external-secrets.io/v1alpha1.ExternalSecretTemplate">ExternalSecretTemplate
  1352. </h3>
  1353. <p>
  1354. (<em>Appears on:</em>
  1355. <a href="#external-secrets.io/v1alpha1.ExternalSecretTarget">ExternalSecretTarget</a>)
  1356. </p>
  1357. <p>
  1358. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  1359. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  1360. </p>
  1361. <table>
  1362. <thead>
  1363. <tr>
  1364. <th>Field</th>
  1365. <th>Description</th>
  1366. </tr>
  1367. </thead>
  1368. <tbody>
  1369. <tr>
  1370. <td>
  1371. <code>type</code></br>
  1372. <em>
  1373. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#secrettype-v1-core">
  1374. Kubernetes core/v1.SecretType
  1375. </a>
  1376. </em>
  1377. </td>
  1378. <td>
  1379. <em>(Optional)</em>
  1380. </td>
  1381. </tr>
  1382. <tr>
  1383. <td>
  1384. <code>metadata</code></br>
  1385. <em>
  1386. <a href="#external-secrets.io/v1alpha1.ExternalSecretTemplateMetadata">
  1387. ExternalSecretTemplateMetadata
  1388. </a>
  1389. </em>
  1390. </td>
  1391. <td>
  1392. <em>(Optional)</em>
  1393. </td>
  1394. </tr>
  1395. <tr>
  1396. <td>
  1397. <code>data</code></br>
  1398. <em>
  1399. map[string]string
  1400. </em>
  1401. </td>
  1402. <td>
  1403. <em>(Optional)</em>
  1404. </td>
  1405. </tr>
  1406. <tr>
  1407. <td>
  1408. <code>templateFrom</code></br>
  1409. <em>
  1410. <a href="#external-secrets.io/v1alpha1.TemplateFrom">
  1411. []TemplateFrom
  1412. </a>
  1413. </em>
  1414. </td>
  1415. <td>
  1416. <em>(Optional)</em>
  1417. </td>
  1418. </tr>
  1419. </tbody>
  1420. </table>
  1421. <h3 id="external-secrets.io/v1alpha1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  1422. </h3>
  1423. <p>
  1424. (<em>Appears on:</em>
  1425. <a href="#external-secrets.io/v1alpha1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  1426. </p>
  1427. <p>
  1428. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  1429. </p>
  1430. <table>
  1431. <thead>
  1432. <tr>
  1433. <th>Field</th>
  1434. <th>Description</th>
  1435. </tr>
  1436. </thead>
  1437. <tbody>
  1438. <tr>
  1439. <td>
  1440. <code>annotations</code></br>
  1441. <em>
  1442. map[string]string
  1443. </em>
  1444. </td>
  1445. <td>
  1446. <em>(Optional)</em>
  1447. </td>
  1448. </tr>
  1449. <tr>
  1450. <td>
  1451. <code>labels</code></br>
  1452. <em>
  1453. map[string]string
  1454. </em>
  1455. </td>
  1456. <td>
  1457. <em>(Optional)</em>
  1458. </td>
  1459. </tr>
  1460. </tbody>
  1461. </table>
  1462. <h3 id="external-secrets.io/v1alpha1.GCPSMAuth">GCPSMAuth
  1463. </h3>
  1464. <p>
  1465. (<em>Appears on:</em>
  1466. <a href="#external-secrets.io/v1alpha1.GCPSMProvider">GCPSMProvider</a>)
  1467. </p>
  1468. <p>
  1469. </p>
  1470. <table>
  1471. <thead>
  1472. <tr>
  1473. <th>Field</th>
  1474. <th>Description</th>
  1475. </tr>
  1476. </thead>
  1477. <tbody>
  1478. <tr>
  1479. <td>
  1480. <code>secretRef</code></br>
  1481. <em>
  1482. <a href="#external-secrets.io/v1alpha1.GCPSMAuthSecretRef">
  1483. GCPSMAuthSecretRef
  1484. </a>
  1485. </em>
  1486. </td>
  1487. <td>
  1488. </td>
  1489. </tr>
  1490. </tbody>
  1491. </table>
  1492. <h3 id="external-secrets.io/v1alpha1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  1493. </h3>
  1494. <p>
  1495. (<em>Appears on:</em>
  1496. <a href="#external-secrets.io/v1alpha1.GCPSMAuth">GCPSMAuth</a>)
  1497. </p>
  1498. <p>
  1499. </p>
  1500. <table>
  1501. <thead>
  1502. <tr>
  1503. <th>Field</th>
  1504. <th>Description</th>
  1505. </tr>
  1506. </thead>
  1507. <tbody>
  1508. <tr>
  1509. <td>
  1510. <code>secretAccessKeySecretRef</code></br>
  1511. <em>
  1512. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1513. </em>
  1514. </td>
  1515. <td>
  1516. <em>(Optional)</em>
  1517. <p>The SecretAccessKey is used for authentication</p>
  1518. </td>
  1519. </tr>
  1520. </tbody>
  1521. </table>
  1522. <h3 id="external-secrets.io/v1alpha1.GCPSMProvider">GCPSMProvider
  1523. </h3>
  1524. <p>
  1525. (<em>Appears on:</em>
  1526. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  1527. </p>
  1528. <p>
  1529. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  1530. </p>
  1531. <table>
  1532. <thead>
  1533. <tr>
  1534. <th>Field</th>
  1535. <th>Description</th>
  1536. </tr>
  1537. </thead>
  1538. <tbody>
  1539. <tr>
  1540. <td>
  1541. <code>auth</code></br>
  1542. <em>
  1543. <a href="#external-secrets.io/v1alpha1.GCPSMAuth">
  1544. GCPSMAuth
  1545. </a>
  1546. </em>
  1547. </td>
  1548. <td>
  1549. <em>(Optional)</em>
  1550. <p>Auth defines the information necessary to authenticate against GCP</p>
  1551. </td>
  1552. </tr>
  1553. <tr>
  1554. <td>
  1555. <code>projectID</code></br>
  1556. <em>
  1557. string
  1558. </em>
  1559. </td>
  1560. <td>
  1561. <p>ProjectID project where secret is located</p>
  1562. </td>
  1563. </tr>
  1564. </tbody>
  1565. </table>
  1566. <h3 id="external-secrets.io/v1alpha1.GenericStore">GenericStore
  1567. </h3>
  1568. <p>
  1569. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  1570. or a namespaced SecretStore.</p>
  1571. </p>
  1572. <h3 id="external-secrets.io/v1alpha1.IBMAuth">IBMAuth
  1573. </h3>
  1574. <p>
  1575. (<em>Appears on:</em>
  1576. <a href="#external-secrets.io/v1alpha1.IBMProvider">IBMProvider</a>)
  1577. </p>
  1578. <p>
  1579. </p>
  1580. <table>
  1581. <thead>
  1582. <tr>
  1583. <th>Field</th>
  1584. <th>Description</th>
  1585. </tr>
  1586. </thead>
  1587. <tbody>
  1588. <tr>
  1589. <td>
  1590. <code>secretRef</code></br>
  1591. <em>
  1592. <a href="#external-secrets.io/v1alpha1.IBMAuthSecretRef">
  1593. IBMAuthSecretRef
  1594. </a>
  1595. </em>
  1596. </td>
  1597. <td>
  1598. </td>
  1599. </tr>
  1600. </tbody>
  1601. </table>
  1602. <h3 id="external-secrets.io/v1alpha1.IBMAuthSecretRef">IBMAuthSecretRef
  1603. </h3>
  1604. <p>
  1605. (<em>Appears on:</em>
  1606. <a href="#external-secrets.io/v1alpha1.IBMAuth">IBMAuth</a>)
  1607. </p>
  1608. <p>
  1609. </p>
  1610. <table>
  1611. <thead>
  1612. <tr>
  1613. <th>Field</th>
  1614. <th>Description</th>
  1615. </tr>
  1616. </thead>
  1617. <tbody>
  1618. <tr>
  1619. <td>
  1620. <code>secretApiKeySecretRef</code></br>
  1621. <em>
  1622. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1623. </em>
  1624. </td>
  1625. <td>
  1626. <em>(Optional)</em>
  1627. <p>The SecretAccessKey is used for authentication</p>
  1628. </td>
  1629. </tr>
  1630. </tbody>
  1631. </table>
  1632. <h3 id="external-secrets.io/v1alpha1.IBMProvider">IBMProvider
  1633. </h3>
  1634. <p>
  1635. (<em>Appears on:</em>
  1636. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  1637. </p>
  1638. <p>
  1639. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  1640. backend.</p>
  1641. </p>
  1642. <table>
  1643. <thead>
  1644. <tr>
  1645. <th>Field</th>
  1646. <th>Description</th>
  1647. </tr>
  1648. </thead>
  1649. <tbody>
  1650. <tr>
  1651. <td>
  1652. <code>auth</code></br>
  1653. <em>
  1654. <a href="#external-secrets.io/v1alpha1.IBMAuth">
  1655. IBMAuth
  1656. </a>
  1657. </em>
  1658. </td>
  1659. <td>
  1660. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  1661. </td>
  1662. </tr>
  1663. <tr>
  1664. <td>
  1665. <code>serviceUrl</code></br>
  1666. <em>
  1667. string
  1668. </em>
  1669. </td>
  1670. <td>
  1671. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  1672. </td>
  1673. </tr>
  1674. </tbody>
  1675. </table>
  1676. <h3 id="external-secrets.io/v1alpha1.SecretStore">SecretStore
  1677. </h3>
  1678. <p>
  1679. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  1680. </p>
  1681. <table>
  1682. <thead>
  1683. <tr>
  1684. <th>Field</th>
  1685. <th>Description</th>
  1686. </tr>
  1687. </thead>
  1688. <tbody>
  1689. <tr>
  1690. <td>
  1691. <code>metadata</code></br>
  1692. <em>
  1693. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  1694. Kubernetes meta/v1.ObjectMeta
  1695. </a>
  1696. </em>
  1697. </td>
  1698. <td>
  1699. Refer to the Kubernetes API documentation for the fields of the
  1700. <code>metadata</code> field.
  1701. </td>
  1702. </tr>
  1703. <tr>
  1704. <td>
  1705. <code>spec</code></br>
  1706. <em>
  1707. <a href="#external-secrets.io/v1alpha1.SecretStoreSpec">
  1708. SecretStoreSpec
  1709. </a>
  1710. </em>
  1711. </td>
  1712. <td>
  1713. <br/>
  1714. <br/>
  1715. <table>
  1716. <tr>
  1717. <td>
  1718. <code>controller</code></br>
  1719. <em>
  1720. string
  1721. </em>
  1722. </td>
  1723. <td>
  1724. <em>(Optional)</em>
  1725. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  1726. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  1727. </td>
  1728. </tr>
  1729. <tr>
  1730. <td>
  1731. <code>provider</code></br>
  1732. <em>
  1733. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">
  1734. SecretStoreProvider
  1735. </a>
  1736. </em>
  1737. </td>
  1738. <td>
  1739. <p>Used to configure the provider. Only one provider may be set</p>
  1740. </td>
  1741. </tr>
  1742. </table>
  1743. </td>
  1744. </tr>
  1745. <tr>
  1746. <td>
  1747. <code>status</code></br>
  1748. <em>
  1749. <a href="#external-secrets.io/v1alpha1.SecretStoreStatus">
  1750. SecretStoreStatus
  1751. </a>
  1752. </em>
  1753. </td>
  1754. <td>
  1755. </td>
  1756. </tr>
  1757. </tbody>
  1758. </table>
  1759. <h3 id="external-secrets.io/v1alpha1.SecretStoreConditionType">SecretStoreConditionType
  1760. (<code>string</code> alias)</p></h3>
  1761. <p>
  1762. (<em>Appears on:</em>
  1763. <a href="#external-secrets.io/v1alpha1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  1764. </p>
  1765. <p>
  1766. </p>
  1767. <table>
  1768. <thead>
  1769. <tr>
  1770. <th>Value</th>
  1771. <th>Description</th>
  1772. </tr>
  1773. </thead>
  1774. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  1775. <td></td>
  1776. </tr></tbody>
  1777. </table>
  1778. <h3 id="external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider
  1779. </h3>
  1780. <p>
  1781. (<em>Appears on:</em>
  1782. <a href="#external-secrets.io/v1alpha1.SecretStoreSpec">SecretStoreSpec</a>)
  1783. </p>
  1784. <p>
  1785. <p>SecretStoreProvider contains the provider-specific configration.</p>
  1786. </p>
  1787. <table>
  1788. <thead>
  1789. <tr>
  1790. <th>Field</th>
  1791. <th>Description</th>
  1792. </tr>
  1793. </thead>
  1794. <tbody>
  1795. <tr>
  1796. <td>
  1797. <code>aws</code></br>
  1798. <em>
  1799. <a href="#external-secrets.io/v1alpha1.AWSProvider">
  1800. AWSProvider
  1801. </a>
  1802. </em>
  1803. </td>
  1804. <td>
  1805. <em>(Optional)</em>
  1806. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  1807. </td>
  1808. </tr>
  1809. <tr>
  1810. <td>
  1811. <code>azurekv</code></br>
  1812. <em>
  1813. <a href="#external-secrets.io/v1alpha1.AzureKVProvider">
  1814. AzureKVProvider
  1815. </a>
  1816. </em>
  1817. </td>
  1818. <td>
  1819. <em>(Optional)</em>
  1820. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  1821. </td>
  1822. </tr>
  1823. <tr>
  1824. <td>
  1825. <code>vault</code></br>
  1826. <em>
  1827. <a href="#external-secrets.io/v1alpha1.VaultProvider">
  1828. VaultProvider
  1829. </a>
  1830. </em>
  1831. </td>
  1832. <td>
  1833. <em>(Optional)</em>
  1834. <p>Vault configures this store to sync secrets using Hashi provider</p>
  1835. </td>
  1836. </tr>
  1837. <tr>
  1838. <td>
  1839. <code>gcpsm</code></br>
  1840. <em>
  1841. <a href="#external-secrets.io/v1alpha1.GCPSMProvider">
  1842. GCPSMProvider
  1843. </a>
  1844. </em>
  1845. </td>
  1846. <td>
  1847. <em>(Optional)</em>
  1848. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  1849. </td>
  1850. </tr>
  1851. <tr>
  1852. <td>
  1853. <code>ibm</code></br>
  1854. <em>
  1855. <a href="#external-secrets.io/v1alpha1.IBMProvider">
  1856. IBMProvider
  1857. </a>
  1858. </em>
  1859. </td>
  1860. <td>
  1861. <em>(Optional)</em>
  1862. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  1863. </td>
  1864. </tr>
  1865. <tr>
  1866. <td>
  1867. <code>yandexlockbox</code></br>
  1868. <em>
  1869. <a href="#external-secrets.io/v1alpha1.YandexLockboxProvider">
  1870. YandexLockboxProvider
  1871. </a>
  1872. </em>
  1873. </td>
  1874. <td>
  1875. <em>(Optional)</em>
  1876. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  1877. </td>
  1878. </tr>
  1879. </tbody>
  1880. </table>
  1881. <h3 id="external-secrets.io/v1alpha1.SecretStoreRef">SecretStoreRef
  1882. </h3>
  1883. <p>
  1884. (<em>Appears on:</em>
  1885. <a href="#external-secrets.io/v1alpha1.ExternalSecretSpec">ExternalSecretSpec</a>)
  1886. </p>
  1887. <p>
  1888. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  1889. </p>
  1890. <table>
  1891. <thead>
  1892. <tr>
  1893. <th>Field</th>
  1894. <th>Description</th>
  1895. </tr>
  1896. </thead>
  1897. <tbody>
  1898. <tr>
  1899. <td>
  1900. <code>name</code></br>
  1901. <em>
  1902. string
  1903. </em>
  1904. </td>
  1905. <td>
  1906. <p>Name of the SecretStore resource</p>
  1907. </td>
  1908. </tr>
  1909. <tr>
  1910. <td>
  1911. <code>kind</code></br>
  1912. <em>
  1913. string
  1914. </em>
  1915. </td>
  1916. <td>
  1917. <em>(Optional)</em>
  1918. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  1919. Defaults to <code>SecretStore</code></p>
  1920. </td>
  1921. </tr>
  1922. </tbody>
  1923. </table>
  1924. <h3 id="external-secrets.io/v1alpha1.SecretStoreSpec">SecretStoreSpec
  1925. </h3>
  1926. <p>
  1927. (<em>Appears on:</em>
  1928. <a href="#external-secrets.io/v1alpha1.ClusterSecretStore">ClusterSecretStore</a>,
  1929. <a href="#external-secrets.io/v1alpha1.SecretStore">SecretStore</a>)
  1930. </p>
  1931. <p>
  1932. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  1933. </p>
  1934. <table>
  1935. <thead>
  1936. <tr>
  1937. <th>Field</th>
  1938. <th>Description</th>
  1939. </tr>
  1940. </thead>
  1941. <tbody>
  1942. <tr>
  1943. <td>
  1944. <code>controller</code></br>
  1945. <em>
  1946. string
  1947. </em>
  1948. </td>
  1949. <td>
  1950. <em>(Optional)</em>
  1951. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  1952. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  1953. </td>
  1954. </tr>
  1955. <tr>
  1956. <td>
  1957. <code>provider</code></br>
  1958. <em>
  1959. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">
  1960. SecretStoreProvider
  1961. </a>
  1962. </em>
  1963. </td>
  1964. <td>
  1965. <p>Used to configure the provider. Only one provider may be set</p>
  1966. </td>
  1967. </tr>
  1968. </tbody>
  1969. </table>
  1970. <h3 id="external-secrets.io/v1alpha1.SecretStoreStatus">SecretStoreStatus
  1971. </h3>
  1972. <p>
  1973. (<em>Appears on:</em>
  1974. <a href="#external-secrets.io/v1alpha1.ClusterSecretStore">ClusterSecretStore</a>,
  1975. <a href="#external-secrets.io/v1alpha1.SecretStore">SecretStore</a>)
  1976. </p>
  1977. <p>
  1978. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  1979. </p>
  1980. <table>
  1981. <thead>
  1982. <tr>
  1983. <th>Field</th>
  1984. <th>Description</th>
  1985. </tr>
  1986. </thead>
  1987. <tbody>
  1988. <tr>
  1989. <td>
  1990. <code>conditions</code></br>
  1991. <em>
  1992. <a href="#external-secrets.io/v1alpha1.SecretStoreStatusCondition">
  1993. []SecretStoreStatusCondition
  1994. </a>
  1995. </em>
  1996. </td>
  1997. <td>
  1998. <em>(Optional)</em>
  1999. </td>
  2000. </tr>
  2001. </tbody>
  2002. </table>
  2003. <h3 id="external-secrets.io/v1alpha1.SecretStoreStatusCondition">SecretStoreStatusCondition
  2004. </h3>
  2005. <p>
  2006. (<em>Appears on:</em>
  2007. <a href="#external-secrets.io/v1alpha1.SecretStoreStatus">SecretStoreStatus</a>)
  2008. </p>
  2009. <p>
  2010. </p>
  2011. <table>
  2012. <thead>
  2013. <tr>
  2014. <th>Field</th>
  2015. <th>Description</th>
  2016. </tr>
  2017. </thead>
  2018. <tbody>
  2019. <tr>
  2020. <td>
  2021. <code>type</code></br>
  2022. <em>
  2023. <a href="#external-secrets.io/v1alpha1.SecretStoreConditionType">
  2024. SecretStoreConditionType
  2025. </a>
  2026. </em>
  2027. </td>
  2028. <td>
  2029. </td>
  2030. </tr>
  2031. <tr>
  2032. <td>
  2033. <code>status</code></br>
  2034. <em>
  2035. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  2036. Kubernetes core/v1.ConditionStatus
  2037. </a>
  2038. </em>
  2039. </td>
  2040. <td>
  2041. </td>
  2042. </tr>
  2043. <tr>
  2044. <td>
  2045. <code>reason</code></br>
  2046. <em>
  2047. string
  2048. </em>
  2049. </td>
  2050. <td>
  2051. <em>(Optional)</em>
  2052. </td>
  2053. </tr>
  2054. <tr>
  2055. <td>
  2056. <code>message</code></br>
  2057. <em>
  2058. string
  2059. </em>
  2060. </td>
  2061. <td>
  2062. <em>(Optional)</em>
  2063. </td>
  2064. </tr>
  2065. <tr>
  2066. <td>
  2067. <code>lastTransitionTime</code></br>
  2068. <em>
  2069. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  2070. Kubernetes meta/v1.Time
  2071. </a>
  2072. </em>
  2073. </td>
  2074. <td>
  2075. <em>(Optional)</em>
  2076. </td>
  2077. </tr>
  2078. </tbody>
  2079. </table>
  2080. <h3 id="external-secrets.io/v1alpha1.TemplateFrom">TemplateFrom
  2081. </h3>
  2082. <p>
  2083. (<em>Appears on:</em>
  2084. <a href="#external-secrets.io/v1alpha1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  2085. </p>
  2086. <p>
  2087. </p>
  2088. <table>
  2089. <thead>
  2090. <tr>
  2091. <th>Field</th>
  2092. <th>Description</th>
  2093. </tr>
  2094. </thead>
  2095. <tbody>
  2096. <tr>
  2097. <td>
  2098. <code>configMap</code></br>
  2099. <em>
  2100. <a href="#external-secrets.io/v1alpha1.TemplateRef">
  2101. TemplateRef
  2102. </a>
  2103. </em>
  2104. </td>
  2105. <td>
  2106. </td>
  2107. </tr>
  2108. <tr>
  2109. <td>
  2110. <code>secret</code></br>
  2111. <em>
  2112. <a href="#external-secrets.io/v1alpha1.TemplateRef">
  2113. TemplateRef
  2114. </a>
  2115. </em>
  2116. </td>
  2117. <td>
  2118. </td>
  2119. </tr>
  2120. </tbody>
  2121. </table>
  2122. <h3 id="external-secrets.io/v1alpha1.TemplateRef">TemplateRef
  2123. </h3>
  2124. <p>
  2125. (<em>Appears on:</em>
  2126. <a href="#external-secrets.io/v1alpha1.TemplateFrom">TemplateFrom</a>)
  2127. </p>
  2128. <p>
  2129. </p>
  2130. <table>
  2131. <thead>
  2132. <tr>
  2133. <th>Field</th>
  2134. <th>Description</th>
  2135. </tr>
  2136. </thead>
  2137. <tbody>
  2138. <tr>
  2139. <td>
  2140. <code>name</code></br>
  2141. <em>
  2142. string
  2143. </em>
  2144. </td>
  2145. <td>
  2146. </td>
  2147. </tr>
  2148. <tr>
  2149. <td>
  2150. <code>items</code></br>
  2151. <em>
  2152. <a href="#external-secrets.io/v1alpha1.TemplateRefItem">
  2153. []TemplateRefItem
  2154. </a>
  2155. </em>
  2156. </td>
  2157. <td>
  2158. </td>
  2159. </tr>
  2160. </tbody>
  2161. </table>
  2162. <h3 id="external-secrets.io/v1alpha1.TemplateRefItem">TemplateRefItem
  2163. </h3>
  2164. <p>
  2165. (<em>Appears on:</em>
  2166. <a href="#external-secrets.io/v1alpha1.TemplateRef">TemplateRef</a>)
  2167. </p>
  2168. <p>
  2169. </p>
  2170. <table>
  2171. <thead>
  2172. <tr>
  2173. <th>Field</th>
  2174. <th>Description</th>
  2175. </tr>
  2176. </thead>
  2177. <tbody>
  2178. <tr>
  2179. <td>
  2180. <code>key</code></br>
  2181. <em>
  2182. string
  2183. </em>
  2184. </td>
  2185. <td>
  2186. </td>
  2187. </tr>
  2188. </tbody>
  2189. </table>
  2190. <h3 id="external-secrets.io/v1alpha1.VaultAppRole">VaultAppRole
  2191. </h3>
  2192. <p>
  2193. (<em>Appears on:</em>
  2194. <a href="#external-secrets.io/v1alpha1.VaultAuth">VaultAuth</a>)
  2195. </p>
  2196. <p>
  2197. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  2198. with the role and secret stored in a Kubernetes Secret resource.</p>
  2199. </p>
  2200. <table>
  2201. <thead>
  2202. <tr>
  2203. <th>Field</th>
  2204. <th>Description</th>
  2205. </tr>
  2206. </thead>
  2207. <tbody>
  2208. <tr>
  2209. <td>
  2210. <code>path</code></br>
  2211. <em>
  2212. string
  2213. </em>
  2214. </td>
  2215. <td>
  2216. <p>Path where the App Role authentication backend is mounted
  2217. in Vault, e.g: &ldquo;approle&rdquo;</p>
  2218. </td>
  2219. </tr>
  2220. <tr>
  2221. <td>
  2222. <code>roleId</code></br>
  2223. <em>
  2224. string
  2225. </em>
  2226. </td>
  2227. <td>
  2228. <p>RoleID configured in the App Role authentication backend when setting
  2229. up the authentication backend in Vault.</p>
  2230. </td>
  2231. </tr>
  2232. <tr>
  2233. <td>
  2234. <code>secretRef</code></br>
  2235. <em>
  2236. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2237. </em>
  2238. </td>
  2239. <td>
  2240. <p>Reference to a key in a Secret that contains the App Role secret used
  2241. to authenticate with Vault.
  2242. The <code>key</code> field must be specified and denotes which entry within the Secret
  2243. resource is used as the app role secret.</p>
  2244. </td>
  2245. </tr>
  2246. </tbody>
  2247. </table>
  2248. <h3 id="external-secrets.io/v1alpha1.VaultAuth">VaultAuth
  2249. </h3>
  2250. <p>
  2251. (<em>Appears on:</em>
  2252. <a href="#external-secrets.io/v1alpha1.VaultProvider">VaultProvider</a>)
  2253. </p>
  2254. <p>
  2255. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  2256. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>jwt</code> or <code>cert</code>
  2257. can be specified.</p>
  2258. </p>
  2259. <table>
  2260. <thead>
  2261. <tr>
  2262. <th>Field</th>
  2263. <th>Description</th>
  2264. </tr>
  2265. </thead>
  2266. <tbody>
  2267. <tr>
  2268. <td>
  2269. <code>tokenSecretRef</code></br>
  2270. <em>
  2271. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2272. </em>
  2273. </td>
  2274. <td>
  2275. <em>(Optional)</em>
  2276. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  2277. </td>
  2278. </tr>
  2279. <tr>
  2280. <td>
  2281. <code>appRole</code></br>
  2282. <em>
  2283. <a href="#external-secrets.io/v1alpha1.VaultAppRole">
  2284. VaultAppRole
  2285. </a>
  2286. </em>
  2287. </td>
  2288. <td>
  2289. <em>(Optional)</em>
  2290. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  2291. with the role and secret stored in a Kubernetes Secret resource.</p>
  2292. </td>
  2293. </tr>
  2294. <tr>
  2295. <td>
  2296. <code>kubernetes</code></br>
  2297. <em>
  2298. <a href="#external-secrets.io/v1alpha1.VaultKubernetesAuth">
  2299. VaultKubernetesAuth
  2300. </a>
  2301. </em>
  2302. </td>
  2303. <td>
  2304. <em>(Optional)</em>
  2305. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  2306. token stored in the named Secret resource to the Vault server.</p>
  2307. </td>
  2308. </tr>
  2309. <tr>
  2310. <td>
  2311. <code>ldap</code></br>
  2312. <em>
  2313. <a href="#external-secrets.io/v1alpha1.VaultLdapAuth">
  2314. VaultLdapAuth
  2315. </a>
  2316. </em>
  2317. </td>
  2318. <td>
  2319. <em>(Optional)</em>
  2320. <p>Ldap authenticates with Vault by passing username/password pair using
  2321. the LDAP authentication method</p>
  2322. </td>
  2323. </tr>
  2324. <tr>
  2325. <td>
  2326. <code>jwt</code></br>
  2327. <em>
  2328. <a href="#external-secrets.io/v1alpha1.VaultJwtAuth">
  2329. VaultJwtAuth
  2330. </a>
  2331. </em>
  2332. </td>
  2333. <td>
  2334. <em>(Optional)</em>
  2335. <p>Jwt authenticates with Vault by passing role and JWT token using the
  2336. JWT/OIDC authentication method</p>
  2337. </td>
  2338. </tr>
  2339. <tr>
  2340. <td>
  2341. <code>cert</code></br>
  2342. <em>
  2343. <a href="#external-secrets.io/v1alpha1.VaultCertAuth">
  2344. VaultCertAuth
  2345. </a>
  2346. </em>
  2347. </td>
  2348. <td>
  2349. <em>(Optional)</em>
  2350. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  2351. Cert authentication method</p>
  2352. </td>
  2353. </tr>
  2354. </tbody>
  2355. </table>
  2356. <h3 id="external-secrets.io/v1alpha1.VaultCertAuth">VaultCertAuth
  2357. </h3>
  2358. <p>
  2359. (<em>Appears on:</em>
  2360. <a href="#external-secrets.io/v1alpha1.VaultAuth">VaultAuth</a>)
  2361. </p>
  2362. <p>
  2363. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  2364. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  2365. </p>
  2366. <table>
  2367. <thead>
  2368. <tr>
  2369. <th>Field</th>
  2370. <th>Description</th>
  2371. </tr>
  2372. </thead>
  2373. <tbody>
  2374. <tr>
  2375. <td>
  2376. <code>clientCert</code></br>
  2377. <em>
  2378. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2379. </em>
  2380. </td>
  2381. <td>
  2382. <em>(Optional)</em>
  2383. <p>ClientCert is a certificate to authenticate using the Cert Vault
  2384. authentication method</p>
  2385. </td>
  2386. </tr>
  2387. <tr>
  2388. <td>
  2389. <code>secretRef</code></br>
  2390. <em>
  2391. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2392. </em>
  2393. </td>
  2394. <td>
  2395. <p>SecretRef to a key in a Secret resource containing client private key to
  2396. authenticate with Vault using the Cert authentication method</p>
  2397. </td>
  2398. </tr>
  2399. </tbody>
  2400. </table>
  2401. <h3 id="external-secrets.io/v1alpha1.VaultJwtAuth">VaultJwtAuth
  2402. </h3>
  2403. <p>
  2404. (<em>Appears on:</em>
  2405. <a href="#external-secrets.io/v1alpha1.VaultAuth">VaultAuth</a>)
  2406. </p>
  2407. <p>
  2408. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  2409. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  2410. </p>
  2411. <table>
  2412. <thead>
  2413. <tr>
  2414. <th>Field</th>
  2415. <th>Description</th>
  2416. </tr>
  2417. </thead>
  2418. <tbody>
  2419. <tr>
  2420. <td>
  2421. <code>role</code></br>
  2422. <em>
  2423. string
  2424. </em>
  2425. </td>
  2426. <td>
  2427. <em>(Optional)</em>
  2428. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  2429. authentication method</p>
  2430. </td>
  2431. </tr>
  2432. <tr>
  2433. <td>
  2434. <code>secretRef</code></br>
  2435. <em>
  2436. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2437. </em>
  2438. </td>
  2439. <td>
  2440. <p>SecretRef to a key in a Secret resource containing JWT token to
  2441. authenticate with Vault using the JWT/OIDC authentication method</p>
  2442. </td>
  2443. </tr>
  2444. </tbody>
  2445. </table>
  2446. <h3 id="external-secrets.io/v1alpha1.VaultKVStoreVersion">VaultKVStoreVersion
  2447. (<code>string</code> alias)</p></h3>
  2448. <p>
  2449. (<em>Appears on:</em>
  2450. <a href="#external-secrets.io/v1alpha1.VaultProvider">VaultProvider</a>)
  2451. </p>
  2452. <p>
  2453. </p>
  2454. <table>
  2455. <thead>
  2456. <tr>
  2457. <th>Value</th>
  2458. <th>Description</th>
  2459. </tr>
  2460. </thead>
  2461. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  2462. <td></td>
  2463. </tr><tr><td><p>&#34;v2&#34;</p></td>
  2464. <td></td>
  2465. </tr></tbody>
  2466. </table>
  2467. <h3 id="external-secrets.io/v1alpha1.VaultKubernetesAuth">VaultKubernetesAuth
  2468. </h3>
  2469. <p>
  2470. (<em>Appears on:</em>
  2471. <a href="#external-secrets.io/v1alpha1.VaultAuth">VaultAuth</a>)
  2472. </p>
  2473. <p>
  2474. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  2475. a Secret.</p>
  2476. </p>
  2477. <table>
  2478. <thead>
  2479. <tr>
  2480. <th>Field</th>
  2481. <th>Description</th>
  2482. </tr>
  2483. </thead>
  2484. <tbody>
  2485. <tr>
  2486. <td>
  2487. <code>mountPath</code></br>
  2488. <em>
  2489. string
  2490. </em>
  2491. </td>
  2492. <td>
  2493. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  2494. &ldquo;kubernetes&rdquo;</p>
  2495. </td>
  2496. </tr>
  2497. <tr>
  2498. <td>
  2499. <code>serviceAccountRef</code></br>
  2500. <em>
  2501. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  2502. </em>
  2503. </td>
  2504. <td>
  2505. <em>(Optional)</em>
  2506. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  2507. If the service account is specified, the service account secret token JWT will be used
  2508. for authenticating with Vault. If the service account selector is not supplied,
  2509. the secretRef will be used instead.</p>
  2510. </td>
  2511. </tr>
  2512. <tr>
  2513. <td>
  2514. <code>secretRef</code></br>
  2515. <em>
  2516. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2517. </em>
  2518. </td>
  2519. <td>
  2520. <em>(Optional)</em>
  2521. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  2522. for authenticating with Vault. If a name is specified without a key,
  2523. <code>token</code> is the default. If one is not specified, the one bound to
  2524. the controller will be used.</p>
  2525. </td>
  2526. </tr>
  2527. <tr>
  2528. <td>
  2529. <code>role</code></br>
  2530. <em>
  2531. string
  2532. </em>
  2533. </td>
  2534. <td>
  2535. <p>A required field containing the Vault Role to assume. A Role binds a
  2536. Kubernetes ServiceAccount with a set of Vault policies.</p>
  2537. </td>
  2538. </tr>
  2539. </tbody>
  2540. </table>
  2541. <h3 id="external-secrets.io/v1alpha1.VaultLdapAuth">VaultLdapAuth
  2542. </h3>
  2543. <p>
  2544. (<em>Appears on:</em>
  2545. <a href="#external-secrets.io/v1alpha1.VaultAuth">VaultAuth</a>)
  2546. </p>
  2547. <p>
  2548. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  2549. with the username and password stored in a Kubernetes Secret resource.</p>
  2550. </p>
  2551. <table>
  2552. <thead>
  2553. <tr>
  2554. <th>Field</th>
  2555. <th>Description</th>
  2556. </tr>
  2557. </thead>
  2558. <tbody>
  2559. <tr>
  2560. <td>
  2561. <code>username</code></br>
  2562. <em>
  2563. string
  2564. </em>
  2565. </td>
  2566. <td>
  2567. <p>Username is a LDAP user name used to authenticate using the LDAP Vault
  2568. authentication method</p>
  2569. </td>
  2570. </tr>
  2571. <tr>
  2572. <td>
  2573. <code>secretRef</code></br>
  2574. <em>
  2575. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2576. </em>
  2577. </td>
  2578. <td>
  2579. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  2580. user used to authenticate with Vault using the LDAP authentication
  2581. method</p>
  2582. </td>
  2583. </tr>
  2584. </tbody>
  2585. </table>
  2586. <h3 id="external-secrets.io/v1alpha1.VaultProvider">VaultProvider
  2587. </h3>
  2588. <p>
  2589. (<em>Appears on:</em>
  2590. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  2591. </p>
  2592. <p>
  2593. <p>Configures an store to sync secrets using a HashiCorp Vault
  2594. KV backend.</p>
  2595. </p>
  2596. <table>
  2597. <thead>
  2598. <tr>
  2599. <th>Field</th>
  2600. <th>Description</th>
  2601. </tr>
  2602. </thead>
  2603. <tbody>
  2604. <tr>
  2605. <td>
  2606. <code>auth</code></br>
  2607. <em>
  2608. <a href="#external-secrets.io/v1alpha1.VaultAuth">
  2609. VaultAuth
  2610. </a>
  2611. </em>
  2612. </td>
  2613. <td>
  2614. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  2615. </td>
  2616. </tr>
  2617. <tr>
  2618. <td>
  2619. <code>server</code></br>
  2620. <em>
  2621. string
  2622. </em>
  2623. </td>
  2624. <td>
  2625. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  2626. </td>
  2627. </tr>
  2628. <tr>
  2629. <td>
  2630. <code>path</code></br>
  2631. <em>
  2632. string
  2633. </em>
  2634. </td>
  2635. <td>
  2636. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  2637. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  2638. for fetching secrets from Vault is optional and will be appended
  2639. if not present in specified path.</p>
  2640. </td>
  2641. </tr>
  2642. <tr>
  2643. <td>
  2644. <code>version</code></br>
  2645. <em>
  2646. <a href="#external-secrets.io/v1alpha1.VaultKVStoreVersion">
  2647. VaultKVStoreVersion
  2648. </a>
  2649. </em>
  2650. </td>
  2651. <td>
  2652. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  2653. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  2654. </td>
  2655. </tr>
  2656. <tr>
  2657. <td>
  2658. <code>namespace</code></br>
  2659. <em>
  2660. string
  2661. </em>
  2662. </td>
  2663. <td>
  2664. <em>(Optional)</em>
  2665. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  2666. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  2667. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  2668. </td>
  2669. </tr>
  2670. <tr>
  2671. <td>
  2672. <code>caBundle</code></br>
  2673. <em>
  2674. []byte
  2675. </em>
  2676. </td>
  2677. <td>
  2678. <em>(Optional)</em>
  2679. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  2680. if the Server URL is using HTTPS protocol. This parameter is ignored for
  2681. plain HTTP protocol connection. If not set the system root certificates
  2682. are used to validate the TLS connection.</p>
  2683. </td>
  2684. </tr>
  2685. </tbody>
  2686. </table>
  2687. <h3 id="external-secrets.io/v1alpha1.YandexLockboxAuth">YandexLockboxAuth
  2688. </h3>
  2689. <p>
  2690. (<em>Appears on:</em>
  2691. <a href="#external-secrets.io/v1alpha1.YandexLockboxProvider">YandexLockboxProvider</a>)
  2692. </p>
  2693. <p>
  2694. </p>
  2695. <table>
  2696. <thead>
  2697. <tr>
  2698. <th>Field</th>
  2699. <th>Description</th>
  2700. </tr>
  2701. </thead>
  2702. <tbody>
  2703. <tr>
  2704. <td>
  2705. <code>authorizedKeySecretRef</code></br>
  2706. <em>
  2707. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2708. </em>
  2709. </td>
  2710. <td>
  2711. <em>(Optional)</em>
  2712. <p>The authorized key used for authentication</p>
  2713. </td>
  2714. </tr>
  2715. </tbody>
  2716. </table>
  2717. <h3 id="external-secrets.io/v1alpha1.YandexLockboxProvider">YandexLockboxProvider
  2718. </h3>
  2719. <p>
  2720. (<em>Appears on:</em>
  2721. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  2722. </p>
  2723. <p>
  2724. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  2725. </p>
  2726. <table>
  2727. <thead>
  2728. <tr>
  2729. <th>Field</th>
  2730. <th>Description</th>
  2731. </tr>
  2732. </thead>
  2733. <tbody>
  2734. <tr>
  2735. <td>
  2736. <code>apiEndpoint</code></br>
  2737. <em>
  2738. string
  2739. </em>
  2740. </td>
  2741. <td>
  2742. <em>(Optional)</em>
  2743. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  2744. </td>
  2745. </tr>
  2746. <tr>
  2747. <td>
  2748. <code>auth</code></br>
  2749. <em>
  2750. <a href="#external-secrets.io/v1alpha1.YandexLockboxAuth">
  2751. YandexLockboxAuth
  2752. </a>
  2753. </em>
  2754. </td>
  2755. <td>
  2756. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  2757. </td>
  2758. </tr>
  2759. </tbody>
  2760. </table>
  2761. <hr/>
  2762. <p><em>
  2763. Generated with <code>gen-crd-api-reference-docs</code>.
  2764. </em></p></p>
  2765. </article>
  2766. </div>
  2767. </div>
  2768. </main>
  2769. <footer class="md-footer">
  2770. <nav class="md-footer__inner md-grid" aria-label="Footer">
  2771. <a href="../provider-yandex-lockbox/" class="md-footer__link md-footer__link--prev" aria-label="Previous: Lockbox" rel="prev">
  2772. <div class="md-footer__button md-icon">
  2773. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12z"/></svg>
  2774. </div>
  2775. <div class="md-footer__title">
  2776. <div class="md-ellipsis">
  2777. <span class="md-footer__direction">
  2778. Previous
  2779. </span>
  2780. Lockbox
  2781. </div>
  2782. </div>
  2783. </a>
  2784. <a href="../contributing-devguide/" class="md-footer__link md-footer__link--next" aria-label="Next: Developer guide" rel="next">
  2785. <div class="md-footer__title">
  2786. <div class="md-ellipsis">
  2787. <span class="md-footer__direction">
  2788. Next
  2789. </span>
  2790. Developer guide
  2791. </div>
  2792. </div>
  2793. <div class="md-footer__button md-icon">
  2794. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 11v2h12l-5.5 5.5 1.42 1.42L19.84 12l-7.92-7.92L10.5 5.5 16 11H4z"/></svg>
  2795. </div>
  2796. </a>
  2797. </nav>
  2798. <div class="md-footer-meta md-typeset">
  2799. <div class="md-footer-meta__inner md-grid">
  2800. <div class="md-footer-copyright">
  2801. Made with
  2802. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  2803. Material for MkDocs
  2804. </a>
  2805. </div>
  2806. </div>
  2807. </div>
  2808. </footer>
  2809. </div>
  2810. <div class="md-dialog" data-md-component="dialog">
  2811. <div class="md-dialog__inner md-typeset"></div>
  2812. </div>
  2813. <script id="__config" type="application/json">{"base": "..", "features": [], "translations": {"clipboard.copy": "Copy to clipboard", "clipboard.copied": "Copied to clipboard", "search.config.lang": "en", "search.config.pipeline": "trimmer, stopWordFilter", "search.config.separator": "[\\s\\-]+", "search.placeholder": "Search", "search.result.placeholder": "Type to start searching", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.term.missing": "Missing", "select.version.title": "Select version"}, "search": "../assets/javascripts/workers/search.b0710199.min.js", "version": null}</script>
  2814. <script src="../assets/javascripts/bundle.76f349be.min.js"></script>
  2815. </body>
  2816. </html>