index.html 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629
  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. <li class="md-nav__item">
  200. <a href="../guides-using-latest-image/" class="md-nav__link">
  201. Using Latest Image
  202. </a>
  203. </li>
  204. <li class="md-nav__item">
  205. <a href="../guides-gitops-using-fluxcd/" class="md-nav__link">
  206. GitOps using FluxCD
  207. </a>
  208. </li>
  209. </ul>
  210. </nav>
  211. </li>
  212. <li class="md-nav__item md-nav__item--nested">
  213. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5" type="checkbox" id="__nav_5" >
  214. <label class="md-nav__link" for="__nav_5">
  215. Provider
  216. <span class="md-nav__icon md-icon"></span>
  217. </label>
  218. <nav class="md-nav" aria-label="Provider" data-md-level="1">
  219. <label class="md-nav__title" for="__nav_5">
  220. <span class="md-nav__icon md-icon"></span>
  221. Provider
  222. </label>
  223. <ul class="md-nav__list" data-md-scrollfix>
  224. <li class="md-nav__item md-nav__item--nested">
  225. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_1" type="checkbox" id="__nav_5_1" >
  226. <label class="md-nav__link" for="__nav_5_1">
  227. AWS
  228. <span class="md-nav__icon md-icon"></span>
  229. </label>
  230. <nav class="md-nav" aria-label="AWS" data-md-level="2">
  231. <label class="md-nav__title" for="__nav_5_1">
  232. <span class="md-nav__icon md-icon"></span>
  233. AWS
  234. </label>
  235. <ul class="md-nav__list" data-md-scrollfix>
  236. <li class="md-nav__item">
  237. <a href="../provider-aws-secrets-manager/" class="md-nav__link">
  238. Secrets Manager
  239. </a>
  240. </li>
  241. <li class="md-nav__item">
  242. <a href="../provider-aws-parameter-store/" class="md-nav__link">
  243. Parameter Store
  244. </a>
  245. </li>
  246. </ul>
  247. </nav>
  248. </li>
  249. <li class="md-nav__item md-nav__item--nested">
  250. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_2" type="checkbox" id="__nav_5_2" >
  251. <label class="md-nav__link" for="__nav_5_2">
  252. Azure
  253. <span class="md-nav__icon md-icon"></span>
  254. </label>
  255. <nav class="md-nav" aria-label="Azure" data-md-level="2">
  256. <label class="md-nav__title" for="__nav_5_2">
  257. <span class="md-nav__icon md-icon"></span>
  258. Azure
  259. </label>
  260. <ul class="md-nav__list" data-md-scrollfix>
  261. <li class="md-nav__item">
  262. <a href="../provider-azure-key-vault/" class="md-nav__link">
  263. Key Vault
  264. </a>
  265. </li>
  266. </ul>
  267. </nav>
  268. </li>
  269. <li class="md-nav__item md-nav__item--nested">
  270. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_3" type="checkbox" id="__nav_5_3" >
  271. <label class="md-nav__link" for="__nav_5_3">
  272. Google
  273. <span class="md-nav__icon md-icon"></span>
  274. </label>
  275. <nav class="md-nav" aria-label="Google" data-md-level="2">
  276. <label class="md-nav__title" for="__nav_5_3">
  277. <span class="md-nav__icon md-icon"></span>
  278. Google
  279. </label>
  280. <ul class="md-nav__list" data-md-scrollfix>
  281. <li class="md-nav__item">
  282. <a href="../provider-google-secrets-manager/" class="md-nav__link">
  283. Secrets Manager
  284. </a>
  285. </li>
  286. </ul>
  287. </nav>
  288. </li>
  289. <li class="md-nav__item md-nav__item--nested">
  290. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_4" type="checkbox" id="__nav_5_4" >
  291. <label class="md-nav__link" for="__nav_5_4">
  292. IBM
  293. <span class="md-nav__icon md-icon"></span>
  294. </label>
  295. <nav class="md-nav" aria-label="IBM" data-md-level="2">
  296. <label class="md-nav__title" for="__nav_5_4">
  297. <span class="md-nav__icon md-icon"></span>
  298. IBM
  299. </label>
  300. <ul class="md-nav__list" data-md-scrollfix>
  301. <li class="md-nav__item">
  302. <a href="../provider-ibm-secrets-manager/" class="md-nav__link">
  303. Secrets Manager
  304. </a>
  305. </li>
  306. </ul>
  307. </nav>
  308. </li>
  309. <li class="md-nav__item">
  310. <a href="../provider-akeyless/" class="md-nav__link">
  311. Akeyless
  312. </a>
  313. </li>
  314. <li class="md-nav__item">
  315. <a href="../provider-hashicorp-vault/" class="md-nav__link">
  316. HashiCorp Vault
  317. </a>
  318. </li>
  319. <li class="md-nav__item md-nav__item--nested">
  320. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_7" type="checkbox" id="__nav_5_7" >
  321. <label class="md-nav__link" for="__nav_5_7">
  322. Yandex
  323. <span class="md-nav__icon md-icon"></span>
  324. </label>
  325. <nav class="md-nav" aria-label="Yandex" data-md-level="2">
  326. <label class="md-nav__title" for="__nav_5_7">
  327. <span class="md-nav__icon md-icon"></span>
  328. Yandex
  329. </label>
  330. <ul class="md-nav__list" data-md-scrollfix>
  331. <li class="md-nav__item">
  332. <a href="../provider-yandex-lockbox/" class="md-nav__link">
  333. Lockbox
  334. </a>
  335. </li>
  336. </ul>
  337. </nav>
  338. </li>
  339. <li class="md-nav__item md-nav__item--nested">
  340. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_8" type="checkbox" id="__nav_5_8" >
  341. <label class="md-nav__link" for="__nav_5_8">
  342. Gitlab
  343. <span class="md-nav__icon md-icon"></span>
  344. </label>
  345. <nav class="md-nav" aria-label="Gitlab" data-md-level="2">
  346. <label class="md-nav__title" for="__nav_5_8">
  347. <span class="md-nav__icon md-icon"></span>
  348. Gitlab
  349. </label>
  350. <ul class="md-nav__list" data-md-scrollfix>
  351. <li class="md-nav__item">
  352. <a href="../provider-gitlab-project-variables/" class="md-nav__link">
  353. Gitlab Project Variables
  354. </a>
  355. </li>
  356. </ul>
  357. </nav>
  358. </li>
  359. <li class="md-nav__item md-nav__item--nested">
  360. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_9" type="checkbox" id="__nav_5_9" >
  361. <label class="md-nav__link" for="__nav_5_9">
  362. Oracle
  363. <span class="md-nav__icon md-icon"></span>
  364. </label>
  365. <nav class="md-nav" aria-label="Oracle" data-md-level="2">
  366. <label class="md-nav__title" for="__nav_5_9">
  367. <span class="md-nav__icon md-icon"></span>
  368. Oracle
  369. </label>
  370. <ul class="md-nav__list" data-md-scrollfix>
  371. <li class="md-nav__item">
  372. <a href="../provider-oracle-vault/" class="md-nav__link">
  373. Oracle Vault
  374. </a>
  375. </li>
  376. </ul>
  377. </nav>
  378. </li>
  379. <li class="md-nav__item">
  380. <a href="../provider-webhook/" class="md-nav__link">
  381. Webhook
  382. </a>
  383. </li>
  384. </ul>
  385. </nav>
  386. </li>
  387. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  388. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_6" type="checkbox" id="__nav_6" checked>
  389. <label class="md-nav__link" for="__nav_6">
  390. References
  391. <span class="md-nav__icon md-icon"></span>
  392. </label>
  393. <nav class="md-nav" aria-label="References" data-md-level="1">
  394. <label class="md-nav__title" for="__nav_6">
  395. <span class="md-nav__icon md-icon"></span>
  396. References
  397. </label>
  398. <ul class="md-nav__list" data-md-scrollfix>
  399. <li class="md-nav__item md-nav__item--active">
  400. <input class="md-nav__toggle md-toggle" data-md-toggle="toc" type="checkbox" id="__toc">
  401. <a href="./" class="md-nav__link md-nav__link--active">
  402. API specification
  403. </a>
  404. </li>
  405. </ul>
  406. </nav>
  407. </li>
  408. <li class="md-nav__item md-nav__item--nested">
  409. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_7" type="checkbox" id="__nav_7" >
  410. <label class="md-nav__link" for="__nav_7">
  411. Contributing
  412. <span class="md-nav__icon md-icon"></span>
  413. </label>
  414. <nav class="md-nav" aria-label="Contributing" data-md-level="1">
  415. <label class="md-nav__title" for="__nav_7">
  416. <span class="md-nav__icon md-icon"></span>
  417. Contributing
  418. </label>
  419. <ul class="md-nav__list" data-md-scrollfix>
  420. <li class="md-nav__item">
  421. <a href="../contributing-devguide/" class="md-nav__link">
  422. Developer guide
  423. </a>
  424. </li>
  425. <li class="md-nav__item">
  426. <a href="../contributing-process/" class="md-nav__link">
  427. Contributing Process
  428. </a>
  429. </li>
  430. <li class="md-nav__item">
  431. <a href="../contributing-coc/" class="md-nav__link">
  432. Code of Conduct
  433. </a>
  434. </li>
  435. </ul>
  436. </nav>
  437. </li>
  438. <li class="md-nav__item">
  439. <a href="../deprecation-policy/" class="md-nav__link">
  440. Deprecation Policy
  441. </a>
  442. </li>
  443. </ul>
  444. </nav>
  445. </div>
  446. </div>
  447. </div>
  448. <div class="md-content" data-md-component="content">
  449. <article class="md-content__inner md-typeset">
  450. <a href="https://github.com/external-secrets/external-secrets/edit/master/docs/spec.md" title="Edit this page" class="md-content__button md-icon">
  451. <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>
  452. </a>
  453. <h1>API specification</h1>
  454. <p>Packages:</p>
  455. <ul>
  456. <li>
  457. <a href="#external-secrets.io%2fv1alpha1">external-secrets.io/v1alpha1</a>
  458. </li>
  459. </ul>
  460. <h2 id="external-secrets.io/v1alpha1">external-secrets.io/v1alpha1</h2>
  461. <p>
  462. <p>Package v1alpha1 contains resources for external-secrets</p>
  463. </p>
  464. <p>Resource Types:
  465. <ul></ul>
  466. <h3 id="external-secrets.io/v1alpha1.AWSAuth">AWSAuth
  467. </h3>
  468. <p>
  469. (<em>Appears on:</em>
  470. <a href="#external-secrets.io/v1alpha1.AWSProvider">AWSProvider</a>)
  471. </p>
  472. <p>
  473. <p>AWSAuth tells the controller how to do authentication with aws.
  474. Only one of secretRef or jwt can be specified.
  475. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  476. </p>
  477. <table>
  478. <thead>
  479. <tr>
  480. <th>Field</th>
  481. <th>Description</th>
  482. </tr>
  483. </thead>
  484. <tbody>
  485. <tr>
  486. <td>
  487. <code>secretRef</code></br>
  488. <em>
  489. <a href="#external-secrets.io/v1alpha1.AWSAuthSecretRef">
  490. AWSAuthSecretRef
  491. </a>
  492. </em>
  493. </td>
  494. <td>
  495. <em>(Optional)</em>
  496. </td>
  497. </tr>
  498. <tr>
  499. <td>
  500. <code>jwt</code></br>
  501. <em>
  502. <a href="#external-secrets.io/v1alpha1.AWSJWTAuth">
  503. AWSJWTAuth
  504. </a>
  505. </em>
  506. </td>
  507. <td>
  508. <em>(Optional)</em>
  509. </td>
  510. </tr>
  511. </tbody>
  512. </table>
  513. <h3 id="external-secrets.io/v1alpha1.AWSAuthSecretRef">AWSAuthSecretRef
  514. </h3>
  515. <p>
  516. (<em>Appears on:</em>
  517. <a href="#external-secrets.io/v1alpha1.AWSAuth">AWSAuth</a>)
  518. </p>
  519. <p>
  520. <p>AWSAuthSecretRef holds secret references for AWS credentials
  521. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  522. </p>
  523. <table>
  524. <thead>
  525. <tr>
  526. <th>Field</th>
  527. <th>Description</th>
  528. </tr>
  529. </thead>
  530. <tbody>
  531. <tr>
  532. <td>
  533. <code>accessKeyIDSecretRef</code></br>
  534. <em>
  535. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  536. </em>
  537. </td>
  538. <td>
  539. <p>The AccessKeyID is used for authentication</p>
  540. </td>
  541. </tr>
  542. <tr>
  543. <td>
  544. <code>secretAccessKeySecretRef</code></br>
  545. <em>
  546. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  547. </em>
  548. </td>
  549. <td>
  550. <p>The SecretAccessKey is used for authentication</p>
  551. </td>
  552. </tr>
  553. </tbody>
  554. </table>
  555. <h3 id="external-secrets.io/v1alpha1.AWSJWTAuth">AWSJWTAuth
  556. </h3>
  557. <p>
  558. (<em>Appears on:</em>
  559. <a href="#external-secrets.io/v1alpha1.AWSAuth">AWSAuth</a>)
  560. </p>
  561. <p>
  562. <p>Authenticate against AWS using service account tokens.</p>
  563. </p>
  564. <table>
  565. <thead>
  566. <tr>
  567. <th>Field</th>
  568. <th>Description</th>
  569. </tr>
  570. </thead>
  571. <tbody>
  572. <tr>
  573. <td>
  574. <code>serviceAccountRef</code></br>
  575. <em>
  576. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  577. </em>
  578. </td>
  579. <td>
  580. </td>
  581. </tr>
  582. </tbody>
  583. </table>
  584. <h3 id="external-secrets.io/v1alpha1.AWSProvider">AWSProvider
  585. </h3>
  586. <p>
  587. (<em>Appears on:</em>
  588. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  589. </p>
  590. <p>
  591. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  592. </p>
  593. <table>
  594. <thead>
  595. <tr>
  596. <th>Field</th>
  597. <th>Description</th>
  598. </tr>
  599. </thead>
  600. <tbody>
  601. <tr>
  602. <td>
  603. <code>service</code></br>
  604. <em>
  605. <a href="#external-secrets.io/v1alpha1.AWSServiceType">
  606. AWSServiceType
  607. </a>
  608. </em>
  609. </td>
  610. <td>
  611. <p>Service defines which service should be used to fetch the secrets</p>
  612. </td>
  613. </tr>
  614. <tr>
  615. <td>
  616. <code>auth</code></br>
  617. <em>
  618. <a href="#external-secrets.io/v1alpha1.AWSAuth">
  619. AWSAuth
  620. </a>
  621. </em>
  622. </td>
  623. <td>
  624. <em>(Optional)</em>
  625. <p>Auth defines the information necessary to authenticate against AWS
  626. if not set aws sdk will infer credentials from your environment
  627. 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>
  628. </td>
  629. </tr>
  630. <tr>
  631. <td>
  632. <code>role</code></br>
  633. <em>
  634. string
  635. </em>
  636. </td>
  637. <td>
  638. <em>(Optional)</em>
  639. <p>Role is a Role ARN which the SecretManager provider will assume</p>
  640. </td>
  641. </tr>
  642. <tr>
  643. <td>
  644. <code>region</code></br>
  645. <em>
  646. string
  647. </em>
  648. </td>
  649. <td>
  650. <p>AWS Region to be used for the provider</p>
  651. </td>
  652. </tr>
  653. </tbody>
  654. </table>
  655. <h3 id="external-secrets.io/v1alpha1.AWSServiceType">AWSServiceType
  656. (<code>string</code> alias)</p></h3>
  657. <p>
  658. (<em>Appears on:</em>
  659. <a href="#external-secrets.io/v1alpha1.AWSProvider">AWSProvider</a>)
  660. </p>
  661. <p>
  662. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  663. </p>
  664. <table>
  665. <thead>
  666. <tr>
  667. <th>Value</th>
  668. <th>Description</th>
  669. </tr>
  670. </thead>
  671. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  672. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore.
  673. 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>
  674. </td>
  675. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  676. <td><p>AWSServiceSecretsManager is the AWS SecretsManager.
  677. 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>
  678. </td>
  679. </tr></tbody>
  680. </table>
  681. <h3 id="external-secrets.io/v1alpha1.AkeylessAuth">AkeylessAuth
  682. </h3>
  683. <p>
  684. (<em>Appears on:</em>
  685. <a href="#external-secrets.io/v1alpha1.AkeylessProvider">AkeylessProvider</a>)
  686. </p>
  687. <p>
  688. </p>
  689. <table>
  690. <thead>
  691. <tr>
  692. <th>Field</th>
  693. <th>Description</th>
  694. </tr>
  695. </thead>
  696. <tbody>
  697. <tr>
  698. <td>
  699. <code>secretRef</code></br>
  700. <em>
  701. <a href="#external-secrets.io/v1alpha1.AkeylessAuthSecretRef">
  702. AkeylessAuthSecretRef
  703. </a>
  704. </em>
  705. </td>
  706. <td>
  707. </td>
  708. </tr>
  709. </tbody>
  710. </table>
  711. <h3 id="external-secrets.io/v1alpha1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  712. </h3>
  713. <p>
  714. (<em>Appears on:</em>
  715. <a href="#external-secrets.io/v1alpha1.AkeylessAuth">AkeylessAuth</a>)
  716. </p>
  717. <p>
  718. <p>AkeylessAuthSecretRef
  719. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</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>accessID</code></br>
  732. <em>
  733. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  734. </em>
  735. </td>
  736. <td>
  737. <p>The SecretAccessID is used for authentication</p>
  738. </td>
  739. </tr>
  740. <tr>
  741. <td>
  742. <code>accessType</code></br>
  743. <em>
  744. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  745. </em>
  746. </td>
  747. <td>
  748. </td>
  749. </tr>
  750. <tr>
  751. <td>
  752. <code>accessTypeParam</code></br>
  753. <em>
  754. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  755. </em>
  756. </td>
  757. <td>
  758. </td>
  759. </tr>
  760. </tbody>
  761. </table>
  762. <h3 id="external-secrets.io/v1alpha1.AkeylessProvider">AkeylessProvider
  763. </h3>
  764. <p>
  765. (<em>Appears on:</em>
  766. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  767. </p>
  768. <p>
  769. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  770. </p>
  771. <table>
  772. <thead>
  773. <tr>
  774. <th>Field</th>
  775. <th>Description</th>
  776. </tr>
  777. </thead>
  778. <tbody>
  779. <tr>
  780. <td>
  781. <code>akeylessGWApiURL</code></br>
  782. <em>
  783. string
  784. </em>
  785. </td>
  786. <td>
  787. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  788. </td>
  789. </tr>
  790. <tr>
  791. <td>
  792. <code>authSecretRef</code></br>
  793. <em>
  794. <a href="#external-secrets.io/v1alpha1.AkeylessAuth">
  795. AkeylessAuth
  796. </a>
  797. </em>
  798. </td>
  799. <td>
  800. <p>Auth configures how the operator authenticates with Akeyless.</p>
  801. </td>
  802. </tr>
  803. </tbody>
  804. </table>
  805. <h3 id="external-secrets.io/v1alpha1.AlibabaAuth">AlibabaAuth
  806. </h3>
  807. <p>
  808. (<em>Appears on:</em>
  809. <a href="#external-secrets.io/v1alpha1.AlibabaProvider">AlibabaProvider</a>)
  810. </p>
  811. <p>
  812. <p>AlibabaAuth contains a secretRef for credentials.</p>
  813. </p>
  814. <table>
  815. <thead>
  816. <tr>
  817. <th>Field</th>
  818. <th>Description</th>
  819. </tr>
  820. </thead>
  821. <tbody>
  822. <tr>
  823. <td>
  824. <code>secretRef</code></br>
  825. <em>
  826. <a href="#external-secrets.io/v1alpha1.AlibabaAuthSecretRef">
  827. AlibabaAuthSecretRef
  828. </a>
  829. </em>
  830. </td>
  831. <td>
  832. </td>
  833. </tr>
  834. </tbody>
  835. </table>
  836. <h3 id="external-secrets.io/v1alpha1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  837. </h3>
  838. <p>
  839. (<em>Appears on:</em>
  840. <a href="#external-secrets.io/v1alpha1.AlibabaAuth">AlibabaAuth</a>)
  841. </p>
  842. <p>
  843. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  844. </p>
  845. <table>
  846. <thead>
  847. <tr>
  848. <th>Field</th>
  849. <th>Description</th>
  850. </tr>
  851. </thead>
  852. <tbody>
  853. <tr>
  854. <td>
  855. <code>accessKeyIDSecretRef</code></br>
  856. <em>
  857. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  858. </em>
  859. </td>
  860. <td>
  861. <p>The AccessKeyID is used for authentication</p>
  862. </td>
  863. </tr>
  864. <tr>
  865. <td>
  866. <code>accessKeySecretSecretRef</code></br>
  867. <em>
  868. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  869. </em>
  870. </td>
  871. <td>
  872. <p>The AccessKeySecret is used for authentication</p>
  873. </td>
  874. </tr>
  875. </tbody>
  876. </table>
  877. <h3 id="external-secrets.io/v1alpha1.AlibabaProvider">AlibabaProvider
  878. </h3>
  879. <p>
  880. (<em>Appears on:</em>
  881. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  882. </p>
  883. <p>
  884. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  885. </p>
  886. <table>
  887. <thead>
  888. <tr>
  889. <th>Field</th>
  890. <th>Description</th>
  891. </tr>
  892. </thead>
  893. <tbody>
  894. <tr>
  895. <td>
  896. <code>auth</code></br>
  897. <em>
  898. <a href="#external-secrets.io/v1alpha1.AlibabaAuth">
  899. AlibabaAuth
  900. </a>
  901. </em>
  902. </td>
  903. <td>
  904. </td>
  905. </tr>
  906. <tr>
  907. <td>
  908. <code>endpoint</code></br>
  909. <em>
  910. string
  911. </em>
  912. </td>
  913. <td>
  914. <em>(Optional)</em>
  915. </td>
  916. </tr>
  917. <tr>
  918. <td>
  919. <code>regionID</code></br>
  920. <em>
  921. string
  922. </em>
  923. </td>
  924. <td>
  925. <p>Alibaba Region to be used for the provider</p>
  926. </td>
  927. </tr>
  928. </tbody>
  929. </table>
  930. <h3 id="external-secrets.io/v1alpha1.AuthType">AuthType
  931. (<code>string</code> alias)</p></h3>
  932. <p>
  933. (<em>Appears on:</em>
  934. <a href="#external-secrets.io/v1alpha1.AzureKVProvider">AzureKVProvider</a>)
  935. </p>
  936. <p>
  937. <p>AuthType describes how to authenticate to the Azure Keyvault
  938. Only one of the following auth types may be specified.
  939. If none of the following auth type is specified, the default one
  940. is ServicePrincipal.</p>
  941. </p>
  942. <table>
  943. <thead>
  944. <tr>
  945. <th>Value</th>
  946. <th>Description</th>
  947. </tr>
  948. </thead>
  949. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  950. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity instelled in the clister.</p>
  951. </td>
  952. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  953. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  954. </td>
  955. </tr></tbody>
  956. </table>
  957. <h3 id="external-secrets.io/v1alpha1.AzureKVAuth">AzureKVAuth
  958. </h3>
  959. <p>
  960. (<em>Appears on:</em>
  961. <a href="#external-secrets.io/v1alpha1.AzureKVProvider">AzureKVProvider</a>)
  962. </p>
  963. <p>
  964. <p>Configuration used to authenticate with Azure.</p>
  965. </p>
  966. <table>
  967. <thead>
  968. <tr>
  969. <th>Field</th>
  970. <th>Description</th>
  971. </tr>
  972. </thead>
  973. <tbody>
  974. <tr>
  975. <td>
  976. <code>clientId</code></br>
  977. <em>
  978. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  979. </em>
  980. </td>
  981. <td>
  982. <p>The Azure clientId of the service principle used for authentication.</p>
  983. </td>
  984. </tr>
  985. <tr>
  986. <td>
  987. <code>clientSecret</code></br>
  988. <em>
  989. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  990. </em>
  991. </td>
  992. <td>
  993. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  994. </td>
  995. </tr>
  996. </tbody>
  997. </table>
  998. <h3 id="external-secrets.io/v1alpha1.AzureKVProvider">AzureKVProvider
  999. </h3>
  1000. <p>
  1001. (<em>Appears on:</em>
  1002. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  1003. </p>
  1004. <p>
  1005. <p>Configures an store to sync secrets using Azure KV.</p>
  1006. </p>
  1007. <table>
  1008. <thead>
  1009. <tr>
  1010. <th>Field</th>
  1011. <th>Description</th>
  1012. </tr>
  1013. </thead>
  1014. <tbody>
  1015. <tr>
  1016. <td>
  1017. <code>authType</code></br>
  1018. <em>
  1019. <a href="#external-secrets.io/v1alpha1.AuthType">
  1020. AuthType
  1021. </a>
  1022. </em>
  1023. </td>
  1024. <td>
  1025. <em>(Optional)</em>
  1026. <p>Auth type defines how to authenticate to the keyvault service.
  1027. Valid values are:
  1028. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  1029. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  1030. </td>
  1031. </tr>
  1032. <tr>
  1033. <td>
  1034. <code>vaultUrl</code></br>
  1035. <em>
  1036. string
  1037. </em>
  1038. </td>
  1039. <td>
  1040. <p>Vault Url from which the secrets to be fetched from.</p>
  1041. </td>
  1042. </tr>
  1043. <tr>
  1044. <td>
  1045. <code>tenantId</code></br>
  1046. <em>
  1047. string
  1048. </em>
  1049. </td>
  1050. <td>
  1051. <em>(Optional)</em>
  1052. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.</p>
  1053. </td>
  1054. </tr>
  1055. <tr>
  1056. <td>
  1057. <code>authSecretRef</code></br>
  1058. <em>
  1059. <a href="#external-secrets.io/v1alpha1.AzureKVAuth">
  1060. AzureKVAuth
  1061. </a>
  1062. </em>
  1063. </td>
  1064. <td>
  1065. <em>(Optional)</em>
  1066. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.</p>
  1067. </td>
  1068. </tr>
  1069. <tr>
  1070. <td>
  1071. <code>identityId</code></br>
  1072. <em>
  1073. string
  1074. </em>
  1075. </td>
  1076. <td>
  1077. <em>(Optional)</em>
  1078. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  1079. </td>
  1080. </tr>
  1081. </tbody>
  1082. </table>
  1083. <h3 id="external-secrets.io/v1alpha1.CAProvider">CAProvider
  1084. </h3>
  1085. <p>
  1086. (<em>Appears on:</em>
  1087. <a href="#external-secrets.io/v1alpha1.VaultProvider">VaultProvider</a>)
  1088. </p>
  1089. <p>
  1090. <p>Defines a location to fetch the cert for the vault provider from.</p>
  1091. </p>
  1092. <table>
  1093. <thead>
  1094. <tr>
  1095. <th>Field</th>
  1096. <th>Description</th>
  1097. </tr>
  1098. </thead>
  1099. <tbody>
  1100. <tr>
  1101. <td>
  1102. <code>type</code></br>
  1103. <em>
  1104. <a href="#external-secrets.io/v1alpha1.CAProviderType">
  1105. CAProviderType
  1106. </a>
  1107. </em>
  1108. </td>
  1109. <td>
  1110. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  1111. </td>
  1112. </tr>
  1113. <tr>
  1114. <td>
  1115. <code>name</code></br>
  1116. <em>
  1117. string
  1118. </em>
  1119. </td>
  1120. <td>
  1121. <p>The name of the object located at the provider type.</p>
  1122. </td>
  1123. </tr>
  1124. <tr>
  1125. <td>
  1126. <code>key</code></br>
  1127. <em>
  1128. string
  1129. </em>
  1130. </td>
  1131. <td>
  1132. <p>The key the value inside of the provider type to use, only used with &ldquo;Secret&rdquo; type</p>
  1133. </td>
  1134. </tr>
  1135. <tr>
  1136. <td>
  1137. <code>namespace</code></br>
  1138. <em>
  1139. string
  1140. </em>
  1141. </td>
  1142. <td>
  1143. <em>(Optional)</em>
  1144. <p>The namespace the Provider type is in.</p>
  1145. </td>
  1146. </tr>
  1147. </tbody>
  1148. </table>
  1149. <h3 id="external-secrets.io/v1alpha1.CAProviderType">CAProviderType
  1150. (<code>string</code> alias)</p></h3>
  1151. <p>
  1152. (<em>Appears on:</em>
  1153. <a href="#external-secrets.io/v1alpha1.CAProvider">CAProvider</a>)
  1154. </p>
  1155. <p>
  1156. </p>
  1157. <table>
  1158. <thead>
  1159. <tr>
  1160. <th>Value</th>
  1161. <th>Description</th>
  1162. </tr>
  1163. </thead>
  1164. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  1165. <td></td>
  1166. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  1167. <td></td>
  1168. </tr></tbody>
  1169. </table>
  1170. <h3 id="external-secrets.io/v1alpha1.ClusterSecretStore">ClusterSecretStore
  1171. </h3>
  1172. <p>
  1173. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  1174. </p>
  1175. <table>
  1176. <thead>
  1177. <tr>
  1178. <th>Field</th>
  1179. <th>Description</th>
  1180. </tr>
  1181. </thead>
  1182. <tbody>
  1183. <tr>
  1184. <td>
  1185. <code>metadata</code></br>
  1186. <em>
  1187. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  1188. Kubernetes meta/v1.ObjectMeta
  1189. </a>
  1190. </em>
  1191. </td>
  1192. <td>
  1193. Refer to the Kubernetes API documentation for the fields of the
  1194. <code>metadata</code> field.
  1195. </td>
  1196. </tr>
  1197. <tr>
  1198. <td>
  1199. <code>spec</code></br>
  1200. <em>
  1201. <a href="#external-secrets.io/v1alpha1.SecretStoreSpec">
  1202. SecretStoreSpec
  1203. </a>
  1204. </em>
  1205. </td>
  1206. <td>
  1207. <br/>
  1208. <br/>
  1209. <table>
  1210. <tr>
  1211. <td>
  1212. <code>controller</code></br>
  1213. <em>
  1214. string
  1215. </em>
  1216. </td>
  1217. <td>
  1218. <em>(Optional)</em>
  1219. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  1220. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  1221. </td>
  1222. </tr>
  1223. <tr>
  1224. <td>
  1225. <code>provider</code></br>
  1226. <em>
  1227. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">
  1228. SecretStoreProvider
  1229. </a>
  1230. </em>
  1231. </td>
  1232. <td>
  1233. <p>Used to configure the provider. Only one provider may be set</p>
  1234. </td>
  1235. </tr>
  1236. <tr>
  1237. <td>
  1238. <code>retrySettings</code></br>
  1239. <em>
  1240. <a href="#external-secrets.io/v1alpha1.SecretStoreRetrySettings">
  1241. SecretStoreRetrySettings
  1242. </a>
  1243. </em>
  1244. </td>
  1245. <td>
  1246. <em>(Optional)</em>
  1247. <p>Used to configure http retries if failed</p>
  1248. </td>
  1249. </tr>
  1250. </table>
  1251. </td>
  1252. </tr>
  1253. <tr>
  1254. <td>
  1255. <code>status</code></br>
  1256. <em>
  1257. <a href="#external-secrets.io/v1alpha1.SecretStoreStatus">
  1258. SecretStoreStatus
  1259. </a>
  1260. </em>
  1261. </td>
  1262. <td>
  1263. </td>
  1264. </tr>
  1265. </tbody>
  1266. </table>
  1267. <h3 id="external-secrets.io/v1alpha1.ExternalSecret">ExternalSecret
  1268. </h3>
  1269. <p>
  1270. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  1271. </p>
  1272. <table>
  1273. <thead>
  1274. <tr>
  1275. <th>Field</th>
  1276. <th>Description</th>
  1277. </tr>
  1278. </thead>
  1279. <tbody>
  1280. <tr>
  1281. <td>
  1282. <code>metadata</code></br>
  1283. <em>
  1284. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  1285. Kubernetes meta/v1.ObjectMeta
  1286. </a>
  1287. </em>
  1288. </td>
  1289. <td>
  1290. Refer to the Kubernetes API documentation for the fields of the
  1291. <code>metadata</code> field.
  1292. </td>
  1293. </tr>
  1294. <tr>
  1295. <td>
  1296. <code>spec</code></br>
  1297. <em>
  1298. <a href="#external-secrets.io/v1alpha1.ExternalSecretSpec">
  1299. ExternalSecretSpec
  1300. </a>
  1301. </em>
  1302. </td>
  1303. <td>
  1304. <br/>
  1305. <br/>
  1306. <table>
  1307. <tr>
  1308. <td>
  1309. <code>secretStoreRef</code></br>
  1310. <em>
  1311. <a href="#external-secrets.io/v1alpha1.SecretStoreRef">
  1312. SecretStoreRef
  1313. </a>
  1314. </em>
  1315. </td>
  1316. <td>
  1317. </td>
  1318. </tr>
  1319. <tr>
  1320. <td>
  1321. <code>target</code></br>
  1322. <em>
  1323. <a href="#external-secrets.io/v1alpha1.ExternalSecretTarget">
  1324. ExternalSecretTarget
  1325. </a>
  1326. </em>
  1327. </td>
  1328. <td>
  1329. </td>
  1330. </tr>
  1331. <tr>
  1332. <td>
  1333. <code>refreshInterval</code></br>
  1334. <em>
  1335. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  1336. Kubernetes meta/v1.Duration
  1337. </a>
  1338. </em>
  1339. </td>
  1340. <td>
  1341. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  1342. 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;
  1343. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  1344. </td>
  1345. </tr>
  1346. <tr>
  1347. <td>
  1348. <code>data</code></br>
  1349. <em>
  1350. <a href="#external-secrets.io/v1alpha1.ExternalSecretData">
  1351. []ExternalSecretData
  1352. </a>
  1353. </em>
  1354. </td>
  1355. <td>
  1356. <em>(Optional)</em>
  1357. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  1358. </td>
  1359. </tr>
  1360. <tr>
  1361. <td>
  1362. <code>dataFrom</code></br>
  1363. <em>
  1364. <a href="#external-secrets.io/v1alpha1.ExternalSecretDataRemoteRef">
  1365. []ExternalSecretDataRemoteRef
  1366. </a>
  1367. </em>
  1368. </td>
  1369. <td>
  1370. <em>(Optional)</em>
  1371. <p>DataFrom is used to fetch all properties from a specific Provider data
  1372. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  1373. </td>
  1374. </tr>
  1375. </table>
  1376. </td>
  1377. </tr>
  1378. <tr>
  1379. <td>
  1380. <code>status</code></br>
  1381. <em>
  1382. <a href="#external-secrets.io/v1alpha1.ExternalSecretStatus">
  1383. ExternalSecretStatus
  1384. </a>
  1385. </em>
  1386. </td>
  1387. <td>
  1388. </td>
  1389. </tr>
  1390. </tbody>
  1391. </table>
  1392. <h3 id="external-secrets.io/v1alpha1.ExternalSecretConditionType">ExternalSecretConditionType
  1393. (<code>string</code> alias)</p></h3>
  1394. <p>
  1395. (<em>Appears on:</em>
  1396. <a href="#external-secrets.io/v1alpha1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  1397. </p>
  1398. <p>
  1399. </p>
  1400. <table>
  1401. <thead>
  1402. <tr>
  1403. <th>Value</th>
  1404. <th>Description</th>
  1405. </tr>
  1406. </thead>
  1407. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  1408. <td></td>
  1409. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  1410. <td></td>
  1411. </tr></tbody>
  1412. </table>
  1413. <h3 id="external-secrets.io/v1alpha1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  1414. (<code>string</code> alias)</p></h3>
  1415. <p>
  1416. (<em>Appears on:</em>
  1417. <a href="#external-secrets.io/v1alpha1.ExternalSecretTarget">ExternalSecretTarget</a>)
  1418. </p>
  1419. <p>
  1420. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  1421. </p>
  1422. <table>
  1423. <thead>
  1424. <tr>
  1425. <th>Value</th>
  1426. <th>Description</th>
  1427. </tr>
  1428. </thead>
  1429. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  1430. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  1431. </td>
  1432. </tr><tr><td><p>&#34;None&#34;</p></td>
  1433. <td><p>None does not create a Secret (future use with injector).</p>
  1434. </td>
  1435. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  1436. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  1437. </td>
  1438. </tr></tbody>
  1439. </table>
  1440. <h3 id="external-secrets.io/v1alpha1.ExternalSecretData">ExternalSecretData
  1441. </h3>
  1442. <p>
  1443. (<em>Appears on:</em>
  1444. <a href="#external-secrets.io/v1alpha1.ExternalSecretSpec">ExternalSecretSpec</a>)
  1445. </p>
  1446. <p>
  1447. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  1448. </p>
  1449. <table>
  1450. <thead>
  1451. <tr>
  1452. <th>Field</th>
  1453. <th>Description</th>
  1454. </tr>
  1455. </thead>
  1456. <tbody>
  1457. <tr>
  1458. <td>
  1459. <code>secretKey</code></br>
  1460. <em>
  1461. string
  1462. </em>
  1463. </td>
  1464. <td>
  1465. </td>
  1466. </tr>
  1467. <tr>
  1468. <td>
  1469. <code>remoteRef</code></br>
  1470. <em>
  1471. <a href="#external-secrets.io/v1alpha1.ExternalSecretDataRemoteRef">
  1472. ExternalSecretDataRemoteRef
  1473. </a>
  1474. </em>
  1475. </td>
  1476. <td>
  1477. </td>
  1478. </tr>
  1479. </tbody>
  1480. </table>
  1481. <h3 id="external-secrets.io/v1alpha1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  1482. </h3>
  1483. <p>
  1484. (<em>Appears on:</em>
  1485. <a href="#external-secrets.io/v1alpha1.ExternalSecretData">ExternalSecretData</a>,
  1486. <a href="#external-secrets.io/v1alpha1.ExternalSecretSpec">ExternalSecretSpec</a>)
  1487. </p>
  1488. <p>
  1489. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  1490. </p>
  1491. <table>
  1492. <thead>
  1493. <tr>
  1494. <th>Field</th>
  1495. <th>Description</th>
  1496. </tr>
  1497. </thead>
  1498. <tbody>
  1499. <tr>
  1500. <td>
  1501. <code>key</code></br>
  1502. <em>
  1503. string
  1504. </em>
  1505. </td>
  1506. <td>
  1507. <p>Key is the key used in the Provider, mandatory</p>
  1508. </td>
  1509. </tr>
  1510. <tr>
  1511. <td>
  1512. <code>version</code></br>
  1513. <em>
  1514. string
  1515. </em>
  1516. </td>
  1517. <td>
  1518. <em>(Optional)</em>
  1519. <p>Used to select a specific version of the Provider value, if supported</p>
  1520. </td>
  1521. </tr>
  1522. <tr>
  1523. <td>
  1524. <code>property</code></br>
  1525. <em>
  1526. string
  1527. </em>
  1528. </td>
  1529. <td>
  1530. <em>(Optional)</em>
  1531. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  1532. </td>
  1533. </tr>
  1534. </tbody>
  1535. </table>
  1536. <h3 id="external-secrets.io/v1alpha1.ExternalSecretSpec">ExternalSecretSpec
  1537. </h3>
  1538. <p>
  1539. (<em>Appears on:</em>
  1540. <a href="#external-secrets.io/v1alpha1.ExternalSecret">ExternalSecret</a>)
  1541. </p>
  1542. <p>
  1543. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  1544. </p>
  1545. <table>
  1546. <thead>
  1547. <tr>
  1548. <th>Field</th>
  1549. <th>Description</th>
  1550. </tr>
  1551. </thead>
  1552. <tbody>
  1553. <tr>
  1554. <td>
  1555. <code>secretStoreRef</code></br>
  1556. <em>
  1557. <a href="#external-secrets.io/v1alpha1.SecretStoreRef">
  1558. SecretStoreRef
  1559. </a>
  1560. </em>
  1561. </td>
  1562. <td>
  1563. </td>
  1564. </tr>
  1565. <tr>
  1566. <td>
  1567. <code>target</code></br>
  1568. <em>
  1569. <a href="#external-secrets.io/v1alpha1.ExternalSecretTarget">
  1570. ExternalSecretTarget
  1571. </a>
  1572. </em>
  1573. </td>
  1574. <td>
  1575. </td>
  1576. </tr>
  1577. <tr>
  1578. <td>
  1579. <code>refreshInterval</code></br>
  1580. <em>
  1581. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  1582. Kubernetes meta/v1.Duration
  1583. </a>
  1584. </em>
  1585. </td>
  1586. <td>
  1587. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  1588. 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;
  1589. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  1590. </td>
  1591. </tr>
  1592. <tr>
  1593. <td>
  1594. <code>data</code></br>
  1595. <em>
  1596. <a href="#external-secrets.io/v1alpha1.ExternalSecretData">
  1597. []ExternalSecretData
  1598. </a>
  1599. </em>
  1600. </td>
  1601. <td>
  1602. <em>(Optional)</em>
  1603. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  1604. </td>
  1605. </tr>
  1606. <tr>
  1607. <td>
  1608. <code>dataFrom</code></br>
  1609. <em>
  1610. <a href="#external-secrets.io/v1alpha1.ExternalSecretDataRemoteRef">
  1611. []ExternalSecretDataRemoteRef
  1612. </a>
  1613. </em>
  1614. </td>
  1615. <td>
  1616. <em>(Optional)</em>
  1617. <p>DataFrom is used to fetch all properties from a specific Provider data
  1618. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  1619. </td>
  1620. </tr>
  1621. </tbody>
  1622. </table>
  1623. <h3 id="external-secrets.io/v1alpha1.ExternalSecretStatus">ExternalSecretStatus
  1624. </h3>
  1625. <p>
  1626. (<em>Appears on:</em>
  1627. <a href="#external-secrets.io/v1alpha1.ExternalSecret">ExternalSecret</a>)
  1628. </p>
  1629. <p>
  1630. </p>
  1631. <table>
  1632. <thead>
  1633. <tr>
  1634. <th>Field</th>
  1635. <th>Description</th>
  1636. </tr>
  1637. </thead>
  1638. <tbody>
  1639. <tr>
  1640. <td>
  1641. <code>refreshTime</code></br>
  1642. <em>
  1643. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  1644. Kubernetes meta/v1.Time
  1645. </a>
  1646. </em>
  1647. </td>
  1648. <td>
  1649. <p>refreshTime is the time and date the external secret was fetched and
  1650. the target secret updated</p>
  1651. </td>
  1652. </tr>
  1653. <tr>
  1654. <td>
  1655. <code>syncedResourceVersion</code></br>
  1656. <em>
  1657. string
  1658. </em>
  1659. </td>
  1660. <td>
  1661. <p>SyncedResourceVersion keeps track of the last synced version</p>
  1662. </td>
  1663. </tr>
  1664. <tr>
  1665. <td>
  1666. <code>conditions</code></br>
  1667. <em>
  1668. <a href="#external-secrets.io/v1alpha1.ExternalSecretStatusCondition">
  1669. []ExternalSecretStatusCondition
  1670. </a>
  1671. </em>
  1672. </td>
  1673. <td>
  1674. <em>(Optional)</em>
  1675. </td>
  1676. </tr>
  1677. </tbody>
  1678. </table>
  1679. <h3 id="external-secrets.io/v1alpha1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  1680. </h3>
  1681. <p>
  1682. (<em>Appears on:</em>
  1683. <a href="#external-secrets.io/v1alpha1.ExternalSecretStatus">ExternalSecretStatus</a>)
  1684. </p>
  1685. <p>
  1686. </p>
  1687. <table>
  1688. <thead>
  1689. <tr>
  1690. <th>Field</th>
  1691. <th>Description</th>
  1692. </tr>
  1693. </thead>
  1694. <tbody>
  1695. <tr>
  1696. <td>
  1697. <code>type</code></br>
  1698. <em>
  1699. <a href="#external-secrets.io/v1alpha1.ExternalSecretConditionType">
  1700. ExternalSecretConditionType
  1701. </a>
  1702. </em>
  1703. </td>
  1704. <td>
  1705. </td>
  1706. </tr>
  1707. <tr>
  1708. <td>
  1709. <code>status</code></br>
  1710. <em>
  1711. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  1712. Kubernetes core/v1.ConditionStatus
  1713. </a>
  1714. </em>
  1715. </td>
  1716. <td>
  1717. </td>
  1718. </tr>
  1719. <tr>
  1720. <td>
  1721. <code>reason</code></br>
  1722. <em>
  1723. string
  1724. </em>
  1725. </td>
  1726. <td>
  1727. <em>(Optional)</em>
  1728. </td>
  1729. </tr>
  1730. <tr>
  1731. <td>
  1732. <code>message</code></br>
  1733. <em>
  1734. string
  1735. </em>
  1736. </td>
  1737. <td>
  1738. <em>(Optional)</em>
  1739. </td>
  1740. </tr>
  1741. <tr>
  1742. <td>
  1743. <code>lastTransitionTime</code></br>
  1744. <em>
  1745. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  1746. Kubernetes meta/v1.Time
  1747. </a>
  1748. </em>
  1749. </td>
  1750. <td>
  1751. <em>(Optional)</em>
  1752. </td>
  1753. </tr>
  1754. </tbody>
  1755. </table>
  1756. <h3 id="external-secrets.io/v1alpha1.ExternalSecretTarget">ExternalSecretTarget
  1757. </h3>
  1758. <p>
  1759. (<em>Appears on:</em>
  1760. <a href="#external-secrets.io/v1alpha1.ExternalSecretSpec">ExternalSecretSpec</a>)
  1761. </p>
  1762. <p>
  1763. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  1764. There can be only one target per ExternalSecret.</p>
  1765. </p>
  1766. <table>
  1767. <thead>
  1768. <tr>
  1769. <th>Field</th>
  1770. <th>Description</th>
  1771. </tr>
  1772. </thead>
  1773. <tbody>
  1774. <tr>
  1775. <td>
  1776. <code>name</code></br>
  1777. <em>
  1778. string
  1779. </em>
  1780. </td>
  1781. <td>
  1782. <em>(Optional)</em>
  1783. <p>Name defines the name of the Secret resource to be managed
  1784. This field is immutable
  1785. Defaults to the .metadata.name of the ExternalSecret resource</p>
  1786. </td>
  1787. </tr>
  1788. <tr>
  1789. <td>
  1790. <code>creationPolicy</code></br>
  1791. <em>
  1792. <a href="#external-secrets.io/v1alpha1.ExternalSecretCreationPolicy">
  1793. ExternalSecretCreationPolicy
  1794. </a>
  1795. </em>
  1796. </td>
  1797. <td>
  1798. <em>(Optional)</em>
  1799. <p>CreationPolicy defines rules on how to create the resulting Secret
  1800. Defaults to &lsquo;Owner&rsquo;</p>
  1801. </td>
  1802. </tr>
  1803. <tr>
  1804. <td>
  1805. <code>template</code></br>
  1806. <em>
  1807. <a href="#external-secrets.io/v1alpha1.ExternalSecretTemplate">
  1808. ExternalSecretTemplate
  1809. </a>
  1810. </em>
  1811. </td>
  1812. <td>
  1813. <em>(Optional)</em>
  1814. <p>Template defines a blueprint for the created Secret resource.</p>
  1815. </td>
  1816. </tr>
  1817. <tr>
  1818. <td>
  1819. <code>immutable</code></br>
  1820. <em>
  1821. bool
  1822. </em>
  1823. </td>
  1824. <td>
  1825. <em>(Optional)</em>
  1826. <p>Immutable defines if the final secret will be immutable</p>
  1827. </td>
  1828. </tr>
  1829. </tbody>
  1830. </table>
  1831. <h3 id="external-secrets.io/v1alpha1.ExternalSecretTemplate">ExternalSecretTemplate
  1832. </h3>
  1833. <p>
  1834. (<em>Appears on:</em>
  1835. <a href="#external-secrets.io/v1alpha1.ExternalSecretTarget">ExternalSecretTarget</a>)
  1836. </p>
  1837. <p>
  1838. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  1839. 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>
  1840. </p>
  1841. <table>
  1842. <thead>
  1843. <tr>
  1844. <th>Field</th>
  1845. <th>Description</th>
  1846. </tr>
  1847. </thead>
  1848. <tbody>
  1849. <tr>
  1850. <td>
  1851. <code>type</code></br>
  1852. <em>
  1853. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#secrettype-v1-core">
  1854. Kubernetes core/v1.SecretType
  1855. </a>
  1856. </em>
  1857. </td>
  1858. <td>
  1859. <em>(Optional)</em>
  1860. </td>
  1861. </tr>
  1862. <tr>
  1863. <td>
  1864. <code>metadata</code></br>
  1865. <em>
  1866. <a href="#external-secrets.io/v1alpha1.ExternalSecretTemplateMetadata">
  1867. ExternalSecretTemplateMetadata
  1868. </a>
  1869. </em>
  1870. </td>
  1871. <td>
  1872. <em>(Optional)</em>
  1873. </td>
  1874. </tr>
  1875. <tr>
  1876. <td>
  1877. <code>data</code></br>
  1878. <em>
  1879. map[string]string
  1880. </em>
  1881. </td>
  1882. <td>
  1883. <em>(Optional)</em>
  1884. </td>
  1885. </tr>
  1886. <tr>
  1887. <td>
  1888. <code>templateFrom</code></br>
  1889. <em>
  1890. <a href="#external-secrets.io/v1alpha1.TemplateFrom">
  1891. []TemplateFrom
  1892. </a>
  1893. </em>
  1894. </td>
  1895. <td>
  1896. <em>(Optional)</em>
  1897. </td>
  1898. </tr>
  1899. </tbody>
  1900. </table>
  1901. <h3 id="external-secrets.io/v1alpha1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  1902. </h3>
  1903. <p>
  1904. (<em>Appears on:</em>
  1905. <a href="#external-secrets.io/v1alpha1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  1906. </p>
  1907. <p>
  1908. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  1909. </p>
  1910. <table>
  1911. <thead>
  1912. <tr>
  1913. <th>Field</th>
  1914. <th>Description</th>
  1915. </tr>
  1916. </thead>
  1917. <tbody>
  1918. <tr>
  1919. <td>
  1920. <code>annotations</code></br>
  1921. <em>
  1922. map[string]string
  1923. </em>
  1924. </td>
  1925. <td>
  1926. <em>(Optional)</em>
  1927. </td>
  1928. </tr>
  1929. <tr>
  1930. <td>
  1931. <code>labels</code></br>
  1932. <em>
  1933. map[string]string
  1934. </em>
  1935. </td>
  1936. <td>
  1937. <em>(Optional)</em>
  1938. </td>
  1939. </tr>
  1940. </tbody>
  1941. </table>
  1942. <h3 id="external-secrets.io/v1alpha1.GCPSMAuth">GCPSMAuth
  1943. </h3>
  1944. <p>
  1945. (<em>Appears on:</em>
  1946. <a href="#external-secrets.io/v1alpha1.GCPSMProvider">GCPSMProvider</a>)
  1947. </p>
  1948. <p>
  1949. </p>
  1950. <table>
  1951. <thead>
  1952. <tr>
  1953. <th>Field</th>
  1954. <th>Description</th>
  1955. </tr>
  1956. </thead>
  1957. <tbody>
  1958. <tr>
  1959. <td>
  1960. <code>secretRef</code></br>
  1961. <em>
  1962. <a href="#external-secrets.io/v1alpha1.GCPSMAuthSecretRef">
  1963. GCPSMAuthSecretRef
  1964. </a>
  1965. </em>
  1966. </td>
  1967. <td>
  1968. <em>(Optional)</em>
  1969. </td>
  1970. </tr>
  1971. <tr>
  1972. <td>
  1973. <code>workloadIdentity</code></br>
  1974. <em>
  1975. <a href="#external-secrets.io/v1alpha1.GCPWorkloadIdentity">
  1976. GCPWorkloadIdentity
  1977. </a>
  1978. </em>
  1979. </td>
  1980. <td>
  1981. <em>(Optional)</em>
  1982. </td>
  1983. </tr>
  1984. </tbody>
  1985. </table>
  1986. <h3 id="external-secrets.io/v1alpha1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  1987. </h3>
  1988. <p>
  1989. (<em>Appears on:</em>
  1990. <a href="#external-secrets.io/v1alpha1.GCPSMAuth">GCPSMAuth</a>)
  1991. </p>
  1992. <p>
  1993. </p>
  1994. <table>
  1995. <thead>
  1996. <tr>
  1997. <th>Field</th>
  1998. <th>Description</th>
  1999. </tr>
  2000. </thead>
  2001. <tbody>
  2002. <tr>
  2003. <td>
  2004. <code>secretAccessKeySecretRef</code></br>
  2005. <em>
  2006. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2007. </em>
  2008. </td>
  2009. <td>
  2010. <em>(Optional)</em>
  2011. <p>The SecretAccessKey is used for authentication</p>
  2012. </td>
  2013. </tr>
  2014. </tbody>
  2015. </table>
  2016. <h3 id="external-secrets.io/v1alpha1.GCPSMProvider">GCPSMProvider
  2017. </h3>
  2018. <p>
  2019. (<em>Appears on:</em>
  2020. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  2021. </p>
  2022. <p>
  2023. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  2024. </p>
  2025. <table>
  2026. <thead>
  2027. <tr>
  2028. <th>Field</th>
  2029. <th>Description</th>
  2030. </tr>
  2031. </thead>
  2032. <tbody>
  2033. <tr>
  2034. <td>
  2035. <code>auth</code></br>
  2036. <em>
  2037. <a href="#external-secrets.io/v1alpha1.GCPSMAuth">
  2038. GCPSMAuth
  2039. </a>
  2040. </em>
  2041. </td>
  2042. <td>
  2043. <em>(Optional)</em>
  2044. <p>Auth defines the information necessary to authenticate against GCP</p>
  2045. </td>
  2046. </tr>
  2047. <tr>
  2048. <td>
  2049. <code>projectID</code></br>
  2050. <em>
  2051. string
  2052. </em>
  2053. </td>
  2054. <td>
  2055. <p>ProjectID project where secret is located</p>
  2056. </td>
  2057. </tr>
  2058. </tbody>
  2059. </table>
  2060. <h3 id="external-secrets.io/v1alpha1.GCPWorkloadIdentity">GCPWorkloadIdentity
  2061. </h3>
  2062. <p>
  2063. (<em>Appears on:</em>
  2064. <a href="#external-secrets.io/v1alpha1.GCPSMAuth">GCPSMAuth</a>)
  2065. </p>
  2066. <p>
  2067. </p>
  2068. <table>
  2069. <thead>
  2070. <tr>
  2071. <th>Field</th>
  2072. <th>Description</th>
  2073. </tr>
  2074. </thead>
  2075. <tbody>
  2076. <tr>
  2077. <td>
  2078. <code>serviceAccountRef</code></br>
  2079. <em>
  2080. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  2081. </em>
  2082. </td>
  2083. <td>
  2084. </td>
  2085. </tr>
  2086. <tr>
  2087. <td>
  2088. <code>clusterLocation</code></br>
  2089. <em>
  2090. string
  2091. </em>
  2092. </td>
  2093. <td>
  2094. </td>
  2095. </tr>
  2096. <tr>
  2097. <td>
  2098. <code>clusterName</code></br>
  2099. <em>
  2100. string
  2101. </em>
  2102. </td>
  2103. <td>
  2104. </td>
  2105. </tr>
  2106. </tbody>
  2107. </table>
  2108. <h3 id="external-secrets.io/v1alpha1.GenericStore">GenericStore
  2109. </h3>
  2110. <p>
  2111. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  2112. or a namespaced SecretStore.</p>
  2113. </p>
  2114. <h3 id="external-secrets.io/v1alpha1.GitlabAuth">GitlabAuth
  2115. </h3>
  2116. <p>
  2117. (<em>Appears on:</em>
  2118. <a href="#external-secrets.io/v1alpha1.GitlabProvider">GitlabProvider</a>)
  2119. </p>
  2120. <p>
  2121. </p>
  2122. <table>
  2123. <thead>
  2124. <tr>
  2125. <th>Field</th>
  2126. <th>Description</th>
  2127. </tr>
  2128. </thead>
  2129. <tbody>
  2130. <tr>
  2131. <td>
  2132. <code>SecretRef</code></br>
  2133. <em>
  2134. <a href="#external-secrets.io/v1alpha1.GitlabSecretRef">
  2135. GitlabSecretRef
  2136. </a>
  2137. </em>
  2138. </td>
  2139. <td>
  2140. </td>
  2141. </tr>
  2142. </tbody>
  2143. </table>
  2144. <h3 id="external-secrets.io/v1alpha1.GitlabProvider">GitlabProvider
  2145. </h3>
  2146. <p>
  2147. (<em>Appears on:</em>
  2148. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  2149. </p>
  2150. <p>
  2151. <p>Configures a store to sync secrets with a GitLab instance.</p>
  2152. </p>
  2153. <table>
  2154. <thead>
  2155. <tr>
  2156. <th>Field</th>
  2157. <th>Description</th>
  2158. </tr>
  2159. </thead>
  2160. <tbody>
  2161. <tr>
  2162. <td>
  2163. <code>url</code></br>
  2164. <em>
  2165. string
  2166. </em>
  2167. </td>
  2168. <td>
  2169. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  2170. </td>
  2171. </tr>
  2172. <tr>
  2173. <td>
  2174. <code>auth</code></br>
  2175. <em>
  2176. <a href="#external-secrets.io/v1alpha1.GitlabAuth">
  2177. GitlabAuth
  2178. </a>
  2179. </em>
  2180. </td>
  2181. <td>
  2182. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  2183. </td>
  2184. </tr>
  2185. <tr>
  2186. <td>
  2187. <code>projectID</code></br>
  2188. <em>
  2189. string
  2190. </em>
  2191. </td>
  2192. <td>
  2193. <p>ProjectID specifies a project where secrets are located.</p>
  2194. </td>
  2195. </tr>
  2196. </tbody>
  2197. </table>
  2198. <h3 id="external-secrets.io/v1alpha1.GitlabSecretRef">GitlabSecretRef
  2199. </h3>
  2200. <p>
  2201. (<em>Appears on:</em>
  2202. <a href="#external-secrets.io/v1alpha1.GitlabAuth">GitlabAuth</a>)
  2203. </p>
  2204. <p>
  2205. </p>
  2206. <table>
  2207. <thead>
  2208. <tr>
  2209. <th>Field</th>
  2210. <th>Description</th>
  2211. </tr>
  2212. </thead>
  2213. <tbody>
  2214. <tr>
  2215. <td>
  2216. <code>accessToken</code></br>
  2217. <em>
  2218. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2219. </em>
  2220. </td>
  2221. <td>
  2222. <p>AccessToken is used for authentication.</p>
  2223. </td>
  2224. </tr>
  2225. </tbody>
  2226. </table>
  2227. <h3 id="external-secrets.io/v1alpha1.IBMAuth">IBMAuth
  2228. </h3>
  2229. <p>
  2230. (<em>Appears on:</em>
  2231. <a href="#external-secrets.io/v1alpha1.IBMProvider">IBMProvider</a>)
  2232. </p>
  2233. <p>
  2234. </p>
  2235. <table>
  2236. <thead>
  2237. <tr>
  2238. <th>Field</th>
  2239. <th>Description</th>
  2240. </tr>
  2241. </thead>
  2242. <tbody>
  2243. <tr>
  2244. <td>
  2245. <code>secretRef</code></br>
  2246. <em>
  2247. <a href="#external-secrets.io/v1alpha1.IBMAuthSecretRef">
  2248. IBMAuthSecretRef
  2249. </a>
  2250. </em>
  2251. </td>
  2252. <td>
  2253. </td>
  2254. </tr>
  2255. </tbody>
  2256. </table>
  2257. <h3 id="external-secrets.io/v1alpha1.IBMAuthSecretRef">IBMAuthSecretRef
  2258. </h3>
  2259. <p>
  2260. (<em>Appears on:</em>
  2261. <a href="#external-secrets.io/v1alpha1.IBMAuth">IBMAuth</a>)
  2262. </p>
  2263. <p>
  2264. </p>
  2265. <table>
  2266. <thead>
  2267. <tr>
  2268. <th>Field</th>
  2269. <th>Description</th>
  2270. </tr>
  2271. </thead>
  2272. <tbody>
  2273. <tr>
  2274. <td>
  2275. <code>secretApiKeySecretRef</code></br>
  2276. <em>
  2277. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2278. </em>
  2279. </td>
  2280. <td>
  2281. <em>(Optional)</em>
  2282. <p>The SecretAccessKey is used for authentication</p>
  2283. </td>
  2284. </tr>
  2285. </tbody>
  2286. </table>
  2287. <h3 id="external-secrets.io/v1alpha1.IBMProvider">IBMProvider
  2288. </h3>
  2289. <p>
  2290. (<em>Appears on:</em>
  2291. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  2292. </p>
  2293. <p>
  2294. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  2295. backend.</p>
  2296. </p>
  2297. <table>
  2298. <thead>
  2299. <tr>
  2300. <th>Field</th>
  2301. <th>Description</th>
  2302. </tr>
  2303. </thead>
  2304. <tbody>
  2305. <tr>
  2306. <td>
  2307. <code>auth</code></br>
  2308. <em>
  2309. <a href="#external-secrets.io/v1alpha1.IBMAuth">
  2310. IBMAuth
  2311. </a>
  2312. </em>
  2313. </td>
  2314. <td>
  2315. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  2316. </td>
  2317. </tr>
  2318. <tr>
  2319. <td>
  2320. <code>serviceUrl</code></br>
  2321. <em>
  2322. string
  2323. </em>
  2324. </td>
  2325. <td>
  2326. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  2327. </td>
  2328. </tr>
  2329. </tbody>
  2330. </table>
  2331. <h3 id="external-secrets.io/v1alpha1.OracleAuth">OracleAuth
  2332. </h3>
  2333. <p>
  2334. (<em>Appears on:</em>
  2335. <a href="#external-secrets.io/v1alpha1.OracleProvider">OracleProvider</a>)
  2336. </p>
  2337. <p>
  2338. </p>
  2339. <table>
  2340. <thead>
  2341. <tr>
  2342. <th>Field</th>
  2343. <th>Description</th>
  2344. </tr>
  2345. </thead>
  2346. <tbody>
  2347. <tr>
  2348. <td>
  2349. <code>secretRef</code></br>
  2350. <em>
  2351. <a href="#external-secrets.io/v1alpha1.OracleSecretRef">
  2352. OracleSecretRef
  2353. </a>
  2354. </em>
  2355. </td>
  2356. <td>
  2357. <p>SecretRef to pass through sensitive information.</p>
  2358. </td>
  2359. </tr>
  2360. </tbody>
  2361. </table>
  2362. <h3 id="external-secrets.io/v1alpha1.OracleProvider">OracleProvider
  2363. </h3>
  2364. <p>
  2365. (<em>Appears on:</em>
  2366. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  2367. </p>
  2368. <p>
  2369. <p>Configures an store to sync secrets using a Oracle Vault
  2370. backend.</p>
  2371. </p>
  2372. <table>
  2373. <thead>
  2374. <tr>
  2375. <th>Field</th>
  2376. <th>Description</th>
  2377. </tr>
  2378. </thead>
  2379. <tbody>
  2380. <tr>
  2381. <td>
  2382. <code>auth</code></br>
  2383. <em>
  2384. <a href="#external-secrets.io/v1alpha1.OracleAuth">
  2385. OracleAuth
  2386. </a>
  2387. </em>
  2388. </td>
  2389. <td>
  2390. <p>Auth configures how secret-manager authenticates with the Oracle Vault.</p>
  2391. </td>
  2392. </tr>
  2393. <tr>
  2394. <td>
  2395. <code>user</code></br>
  2396. <em>
  2397. string
  2398. </em>
  2399. </td>
  2400. <td>
  2401. <p>User is an access OCID specific to the account.</p>
  2402. </td>
  2403. </tr>
  2404. <tr>
  2405. <td>
  2406. <code>tenancy</code></br>
  2407. <em>
  2408. string
  2409. </em>
  2410. </td>
  2411. <td>
  2412. <p>projectID is an access token specific to the secret.</p>
  2413. </td>
  2414. </tr>
  2415. <tr>
  2416. <td>
  2417. <code>region</code></br>
  2418. <em>
  2419. string
  2420. </em>
  2421. </td>
  2422. <td>
  2423. <p>projectID is an access token specific to the secret.</p>
  2424. </td>
  2425. </tr>
  2426. </tbody>
  2427. </table>
  2428. <h3 id="external-secrets.io/v1alpha1.OracleSecretRef">OracleSecretRef
  2429. </h3>
  2430. <p>
  2431. (<em>Appears on:</em>
  2432. <a href="#external-secrets.io/v1alpha1.OracleAuth">OracleAuth</a>)
  2433. </p>
  2434. <p>
  2435. </p>
  2436. <table>
  2437. <thead>
  2438. <tr>
  2439. <th>Field</th>
  2440. <th>Description</th>
  2441. </tr>
  2442. </thead>
  2443. <tbody>
  2444. <tr>
  2445. <td>
  2446. <code>privatekey</code></br>
  2447. <em>
  2448. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2449. </em>
  2450. </td>
  2451. <td>
  2452. <p>The Access Token is used for authentication</p>
  2453. </td>
  2454. </tr>
  2455. <tr>
  2456. <td>
  2457. <code>fingerprint</code></br>
  2458. <em>
  2459. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2460. </em>
  2461. </td>
  2462. <td>
  2463. <p>projectID is an access token specific to the secret.</p>
  2464. </td>
  2465. </tr>
  2466. </tbody>
  2467. </table>
  2468. <h3 id="external-secrets.io/v1alpha1.SecretStore">SecretStore
  2469. </h3>
  2470. <p>
  2471. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  2472. </p>
  2473. <table>
  2474. <thead>
  2475. <tr>
  2476. <th>Field</th>
  2477. <th>Description</th>
  2478. </tr>
  2479. </thead>
  2480. <tbody>
  2481. <tr>
  2482. <td>
  2483. <code>metadata</code></br>
  2484. <em>
  2485. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  2486. Kubernetes meta/v1.ObjectMeta
  2487. </a>
  2488. </em>
  2489. </td>
  2490. <td>
  2491. Refer to the Kubernetes API documentation for the fields of the
  2492. <code>metadata</code> field.
  2493. </td>
  2494. </tr>
  2495. <tr>
  2496. <td>
  2497. <code>spec</code></br>
  2498. <em>
  2499. <a href="#external-secrets.io/v1alpha1.SecretStoreSpec">
  2500. SecretStoreSpec
  2501. </a>
  2502. </em>
  2503. </td>
  2504. <td>
  2505. <br/>
  2506. <br/>
  2507. <table>
  2508. <tr>
  2509. <td>
  2510. <code>controller</code></br>
  2511. <em>
  2512. string
  2513. </em>
  2514. </td>
  2515. <td>
  2516. <em>(Optional)</em>
  2517. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  2518. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  2519. </td>
  2520. </tr>
  2521. <tr>
  2522. <td>
  2523. <code>provider</code></br>
  2524. <em>
  2525. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">
  2526. SecretStoreProvider
  2527. </a>
  2528. </em>
  2529. </td>
  2530. <td>
  2531. <p>Used to configure the provider. Only one provider may be set</p>
  2532. </td>
  2533. </tr>
  2534. <tr>
  2535. <td>
  2536. <code>retrySettings</code></br>
  2537. <em>
  2538. <a href="#external-secrets.io/v1alpha1.SecretStoreRetrySettings">
  2539. SecretStoreRetrySettings
  2540. </a>
  2541. </em>
  2542. </td>
  2543. <td>
  2544. <em>(Optional)</em>
  2545. <p>Used to configure http retries if failed</p>
  2546. </td>
  2547. </tr>
  2548. </table>
  2549. </td>
  2550. </tr>
  2551. <tr>
  2552. <td>
  2553. <code>status</code></br>
  2554. <em>
  2555. <a href="#external-secrets.io/v1alpha1.SecretStoreStatus">
  2556. SecretStoreStatus
  2557. </a>
  2558. </em>
  2559. </td>
  2560. <td>
  2561. </td>
  2562. </tr>
  2563. </tbody>
  2564. </table>
  2565. <h3 id="external-secrets.io/v1alpha1.SecretStoreConditionType">SecretStoreConditionType
  2566. (<code>string</code> alias)</p></h3>
  2567. <p>
  2568. (<em>Appears on:</em>
  2569. <a href="#external-secrets.io/v1alpha1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  2570. </p>
  2571. <p>
  2572. </p>
  2573. <table>
  2574. <thead>
  2575. <tr>
  2576. <th>Value</th>
  2577. <th>Description</th>
  2578. </tr>
  2579. </thead>
  2580. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  2581. <td></td>
  2582. </tr></tbody>
  2583. </table>
  2584. <h3 id="external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider
  2585. </h3>
  2586. <p>
  2587. (<em>Appears on:</em>
  2588. <a href="#external-secrets.io/v1alpha1.SecretStoreSpec">SecretStoreSpec</a>)
  2589. </p>
  2590. <p>
  2591. <p>SecretStoreProvider contains the provider-specific configration.</p>
  2592. </p>
  2593. <table>
  2594. <thead>
  2595. <tr>
  2596. <th>Field</th>
  2597. <th>Description</th>
  2598. </tr>
  2599. </thead>
  2600. <tbody>
  2601. <tr>
  2602. <td>
  2603. <code>aws</code></br>
  2604. <em>
  2605. <a href="#external-secrets.io/v1alpha1.AWSProvider">
  2606. AWSProvider
  2607. </a>
  2608. </em>
  2609. </td>
  2610. <td>
  2611. <em>(Optional)</em>
  2612. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  2613. </td>
  2614. </tr>
  2615. <tr>
  2616. <td>
  2617. <code>azurekv</code></br>
  2618. <em>
  2619. <a href="#external-secrets.io/v1alpha1.AzureKVProvider">
  2620. AzureKVProvider
  2621. </a>
  2622. </em>
  2623. </td>
  2624. <td>
  2625. <em>(Optional)</em>
  2626. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  2627. </td>
  2628. </tr>
  2629. <tr>
  2630. <td>
  2631. <code>akeyless</code></br>
  2632. <em>
  2633. <a href="#external-secrets.io/v1alpha1.AkeylessProvider">
  2634. AkeylessProvider
  2635. </a>
  2636. </em>
  2637. </td>
  2638. <td>
  2639. <em>(Optional)</em>
  2640. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  2641. </td>
  2642. </tr>
  2643. <tr>
  2644. <td>
  2645. <code>vault</code></br>
  2646. <em>
  2647. <a href="#external-secrets.io/v1alpha1.VaultProvider">
  2648. VaultProvider
  2649. </a>
  2650. </em>
  2651. </td>
  2652. <td>
  2653. <em>(Optional)</em>
  2654. <p>Vault configures this store to sync secrets using Hashi provider</p>
  2655. </td>
  2656. </tr>
  2657. <tr>
  2658. <td>
  2659. <code>gcpsm</code></br>
  2660. <em>
  2661. <a href="#external-secrets.io/v1alpha1.GCPSMProvider">
  2662. GCPSMProvider
  2663. </a>
  2664. </em>
  2665. </td>
  2666. <td>
  2667. <em>(Optional)</em>
  2668. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  2669. </td>
  2670. </tr>
  2671. <tr>
  2672. <td>
  2673. <code>oracle</code></br>
  2674. <em>
  2675. <a href="#external-secrets.io/v1alpha1.OracleProvider">
  2676. OracleProvider
  2677. </a>
  2678. </em>
  2679. </td>
  2680. <td>
  2681. <em>(Optional)</em>
  2682. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  2683. </td>
  2684. </tr>
  2685. <tr>
  2686. <td>
  2687. <code>ibm</code></br>
  2688. <em>
  2689. <a href="#external-secrets.io/v1alpha1.IBMProvider">
  2690. IBMProvider
  2691. </a>
  2692. </em>
  2693. </td>
  2694. <td>
  2695. <em>(Optional)</em>
  2696. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  2697. </td>
  2698. </tr>
  2699. <tr>
  2700. <td>
  2701. <code>yandexlockbox</code></br>
  2702. <em>
  2703. <a href="#external-secrets.io/v1alpha1.YandexLockboxProvider">
  2704. YandexLockboxProvider
  2705. </a>
  2706. </em>
  2707. </td>
  2708. <td>
  2709. <em>(Optional)</em>
  2710. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  2711. </td>
  2712. </tr>
  2713. <tr>
  2714. <td>
  2715. <code>gitlab</code></br>
  2716. <em>
  2717. <a href="#external-secrets.io/v1alpha1.GitlabProvider">
  2718. GitlabProvider
  2719. </a>
  2720. </em>
  2721. </td>
  2722. <td>
  2723. <em>(Optional)</em>
  2724. <p>GItlab configures this store to sync secrets using Gitlab Variables provider</p>
  2725. </td>
  2726. </tr>
  2727. <tr>
  2728. <td>
  2729. <code>alibaba</code></br>
  2730. <em>
  2731. <a href="#external-secrets.io/v1alpha1.AlibabaProvider">
  2732. AlibabaProvider
  2733. </a>
  2734. </em>
  2735. </td>
  2736. <td>
  2737. <em>(Optional)</em>
  2738. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  2739. </td>
  2740. </tr>
  2741. <tr>
  2742. <td>
  2743. <code>webhook</code></br>
  2744. <em>
  2745. <a href="#external-secrets.io/v1alpha1.WebhookProvider">
  2746. WebhookProvider
  2747. </a>
  2748. </em>
  2749. </td>
  2750. <td>
  2751. <em>(Optional)</em>
  2752. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  2753. </td>
  2754. </tr>
  2755. </tbody>
  2756. </table>
  2757. <h3 id="external-secrets.io/v1alpha1.SecretStoreRef">SecretStoreRef
  2758. </h3>
  2759. <p>
  2760. (<em>Appears on:</em>
  2761. <a href="#external-secrets.io/v1alpha1.ExternalSecretSpec">ExternalSecretSpec</a>)
  2762. </p>
  2763. <p>
  2764. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  2765. </p>
  2766. <table>
  2767. <thead>
  2768. <tr>
  2769. <th>Field</th>
  2770. <th>Description</th>
  2771. </tr>
  2772. </thead>
  2773. <tbody>
  2774. <tr>
  2775. <td>
  2776. <code>name</code></br>
  2777. <em>
  2778. string
  2779. </em>
  2780. </td>
  2781. <td>
  2782. <p>Name of the SecretStore resource</p>
  2783. </td>
  2784. </tr>
  2785. <tr>
  2786. <td>
  2787. <code>kind</code></br>
  2788. <em>
  2789. string
  2790. </em>
  2791. </td>
  2792. <td>
  2793. <em>(Optional)</em>
  2794. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  2795. Defaults to <code>SecretStore</code></p>
  2796. </td>
  2797. </tr>
  2798. </tbody>
  2799. </table>
  2800. <h3 id="external-secrets.io/v1alpha1.SecretStoreRetrySettings">SecretStoreRetrySettings
  2801. </h3>
  2802. <p>
  2803. (<em>Appears on:</em>
  2804. <a href="#external-secrets.io/v1alpha1.SecretStoreSpec">SecretStoreSpec</a>)
  2805. </p>
  2806. <p>
  2807. </p>
  2808. <table>
  2809. <thead>
  2810. <tr>
  2811. <th>Field</th>
  2812. <th>Description</th>
  2813. </tr>
  2814. </thead>
  2815. <tbody>
  2816. <tr>
  2817. <td>
  2818. <code>maxRetries</code></br>
  2819. <em>
  2820. int32
  2821. </em>
  2822. </td>
  2823. <td>
  2824. </td>
  2825. </tr>
  2826. <tr>
  2827. <td>
  2828. <code>retryInterval</code></br>
  2829. <em>
  2830. string
  2831. </em>
  2832. </td>
  2833. <td>
  2834. </td>
  2835. </tr>
  2836. </tbody>
  2837. </table>
  2838. <h3 id="external-secrets.io/v1alpha1.SecretStoreSpec">SecretStoreSpec
  2839. </h3>
  2840. <p>
  2841. (<em>Appears on:</em>
  2842. <a href="#external-secrets.io/v1alpha1.ClusterSecretStore">ClusterSecretStore</a>,
  2843. <a href="#external-secrets.io/v1alpha1.SecretStore">SecretStore</a>)
  2844. </p>
  2845. <p>
  2846. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  2847. </p>
  2848. <table>
  2849. <thead>
  2850. <tr>
  2851. <th>Field</th>
  2852. <th>Description</th>
  2853. </tr>
  2854. </thead>
  2855. <tbody>
  2856. <tr>
  2857. <td>
  2858. <code>controller</code></br>
  2859. <em>
  2860. string
  2861. </em>
  2862. </td>
  2863. <td>
  2864. <em>(Optional)</em>
  2865. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  2866. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  2867. </td>
  2868. </tr>
  2869. <tr>
  2870. <td>
  2871. <code>provider</code></br>
  2872. <em>
  2873. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">
  2874. SecretStoreProvider
  2875. </a>
  2876. </em>
  2877. </td>
  2878. <td>
  2879. <p>Used to configure the provider. Only one provider may be set</p>
  2880. </td>
  2881. </tr>
  2882. <tr>
  2883. <td>
  2884. <code>retrySettings</code></br>
  2885. <em>
  2886. <a href="#external-secrets.io/v1alpha1.SecretStoreRetrySettings">
  2887. SecretStoreRetrySettings
  2888. </a>
  2889. </em>
  2890. </td>
  2891. <td>
  2892. <em>(Optional)</em>
  2893. <p>Used to configure http retries if failed</p>
  2894. </td>
  2895. </tr>
  2896. </tbody>
  2897. </table>
  2898. <h3 id="external-secrets.io/v1alpha1.SecretStoreStatus">SecretStoreStatus
  2899. </h3>
  2900. <p>
  2901. (<em>Appears on:</em>
  2902. <a href="#external-secrets.io/v1alpha1.ClusterSecretStore">ClusterSecretStore</a>,
  2903. <a href="#external-secrets.io/v1alpha1.SecretStore">SecretStore</a>)
  2904. </p>
  2905. <p>
  2906. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  2907. </p>
  2908. <table>
  2909. <thead>
  2910. <tr>
  2911. <th>Field</th>
  2912. <th>Description</th>
  2913. </tr>
  2914. </thead>
  2915. <tbody>
  2916. <tr>
  2917. <td>
  2918. <code>conditions</code></br>
  2919. <em>
  2920. <a href="#external-secrets.io/v1alpha1.SecretStoreStatusCondition">
  2921. []SecretStoreStatusCondition
  2922. </a>
  2923. </em>
  2924. </td>
  2925. <td>
  2926. <em>(Optional)</em>
  2927. </td>
  2928. </tr>
  2929. </tbody>
  2930. </table>
  2931. <h3 id="external-secrets.io/v1alpha1.SecretStoreStatusCondition">SecretStoreStatusCondition
  2932. </h3>
  2933. <p>
  2934. (<em>Appears on:</em>
  2935. <a href="#external-secrets.io/v1alpha1.SecretStoreStatus">SecretStoreStatus</a>)
  2936. </p>
  2937. <p>
  2938. </p>
  2939. <table>
  2940. <thead>
  2941. <tr>
  2942. <th>Field</th>
  2943. <th>Description</th>
  2944. </tr>
  2945. </thead>
  2946. <tbody>
  2947. <tr>
  2948. <td>
  2949. <code>type</code></br>
  2950. <em>
  2951. <a href="#external-secrets.io/v1alpha1.SecretStoreConditionType">
  2952. SecretStoreConditionType
  2953. </a>
  2954. </em>
  2955. </td>
  2956. <td>
  2957. </td>
  2958. </tr>
  2959. <tr>
  2960. <td>
  2961. <code>status</code></br>
  2962. <em>
  2963. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  2964. Kubernetes core/v1.ConditionStatus
  2965. </a>
  2966. </em>
  2967. </td>
  2968. <td>
  2969. </td>
  2970. </tr>
  2971. <tr>
  2972. <td>
  2973. <code>reason</code></br>
  2974. <em>
  2975. string
  2976. </em>
  2977. </td>
  2978. <td>
  2979. <em>(Optional)</em>
  2980. </td>
  2981. </tr>
  2982. <tr>
  2983. <td>
  2984. <code>message</code></br>
  2985. <em>
  2986. string
  2987. </em>
  2988. </td>
  2989. <td>
  2990. <em>(Optional)</em>
  2991. </td>
  2992. </tr>
  2993. <tr>
  2994. <td>
  2995. <code>lastTransitionTime</code></br>
  2996. <em>
  2997. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  2998. Kubernetes meta/v1.Time
  2999. </a>
  3000. </em>
  3001. </td>
  3002. <td>
  3003. <em>(Optional)</em>
  3004. </td>
  3005. </tr>
  3006. </tbody>
  3007. </table>
  3008. <h3 id="external-secrets.io/v1alpha1.TemplateFrom">TemplateFrom
  3009. </h3>
  3010. <p>
  3011. (<em>Appears on:</em>
  3012. <a href="#external-secrets.io/v1alpha1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  3013. </p>
  3014. <p>
  3015. </p>
  3016. <table>
  3017. <thead>
  3018. <tr>
  3019. <th>Field</th>
  3020. <th>Description</th>
  3021. </tr>
  3022. </thead>
  3023. <tbody>
  3024. <tr>
  3025. <td>
  3026. <code>configMap</code></br>
  3027. <em>
  3028. <a href="#external-secrets.io/v1alpha1.TemplateRef">
  3029. TemplateRef
  3030. </a>
  3031. </em>
  3032. </td>
  3033. <td>
  3034. </td>
  3035. </tr>
  3036. <tr>
  3037. <td>
  3038. <code>secret</code></br>
  3039. <em>
  3040. <a href="#external-secrets.io/v1alpha1.TemplateRef">
  3041. TemplateRef
  3042. </a>
  3043. </em>
  3044. </td>
  3045. <td>
  3046. </td>
  3047. </tr>
  3048. </tbody>
  3049. </table>
  3050. <h3 id="external-secrets.io/v1alpha1.TemplateRef">TemplateRef
  3051. </h3>
  3052. <p>
  3053. (<em>Appears on:</em>
  3054. <a href="#external-secrets.io/v1alpha1.TemplateFrom">TemplateFrom</a>)
  3055. </p>
  3056. <p>
  3057. </p>
  3058. <table>
  3059. <thead>
  3060. <tr>
  3061. <th>Field</th>
  3062. <th>Description</th>
  3063. </tr>
  3064. </thead>
  3065. <tbody>
  3066. <tr>
  3067. <td>
  3068. <code>name</code></br>
  3069. <em>
  3070. string
  3071. </em>
  3072. </td>
  3073. <td>
  3074. </td>
  3075. </tr>
  3076. <tr>
  3077. <td>
  3078. <code>items</code></br>
  3079. <em>
  3080. <a href="#external-secrets.io/v1alpha1.TemplateRefItem">
  3081. []TemplateRefItem
  3082. </a>
  3083. </em>
  3084. </td>
  3085. <td>
  3086. </td>
  3087. </tr>
  3088. </tbody>
  3089. </table>
  3090. <h3 id="external-secrets.io/v1alpha1.TemplateRefItem">TemplateRefItem
  3091. </h3>
  3092. <p>
  3093. (<em>Appears on:</em>
  3094. <a href="#external-secrets.io/v1alpha1.TemplateRef">TemplateRef</a>)
  3095. </p>
  3096. <p>
  3097. </p>
  3098. <table>
  3099. <thead>
  3100. <tr>
  3101. <th>Field</th>
  3102. <th>Description</th>
  3103. </tr>
  3104. </thead>
  3105. <tbody>
  3106. <tr>
  3107. <td>
  3108. <code>key</code></br>
  3109. <em>
  3110. string
  3111. </em>
  3112. </td>
  3113. <td>
  3114. </td>
  3115. </tr>
  3116. </tbody>
  3117. </table>
  3118. <h3 id="external-secrets.io/v1alpha1.VaultAppRole">VaultAppRole
  3119. </h3>
  3120. <p>
  3121. (<em>Appears on:</em>
  3122. <a href="#external-secrets.io/v1alpha1.VaultAuth">VaultAuth</a>)
  3123. </p>
  3124. <p>
  3125. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  3126. with the role and secret stored in a Kubernetes Secret resource.</p>
  3127. </p>
  3128. <table>
  3129. <thead>
  3130. <tr>
  3131. <th>Field</th>
  3132. <th>Description</th>
  3133. </tr>
  3134. </thead>
  3135. <tbody>
  3136. <tr>
  3137. <td>
  3138. <code>path</code></br>
  3139. <em>
  3140. string
  3141. </em>
  3142. </td>
  3143. <td>
  3144. <p>Path where the App Role authentication backend is mounted
  3145. in Vault, e.g: &ldquo;approle&rdquo;</p>
  3146. </td>
  3147. </tr>
  3148. <tr>
  3149. <td>
  3150. <code>roleId</code></br>
  3151. <em>
  3152. string
  3153. </em>
  3154. </td>
  3155. <td>
  3156. <p>RoleID configured in the App Role authentication backend when setting
  3157. up the authentication backend in Vault.</p>
  3158. </td>
  3159. </tr>
  3160. <tr>
  3161. <td>
  3162. <code>secretRef</code></br>
  3163. <em>
  3164. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3165. </em>
  3166. </td>
  3167. <td>
  3168. <p>Reference to a key in a Secret that contains the App Role secret used
  3169. to authenticate with Vault.
  3170. The <code>key</code> field must be specified and denotes which entry within the Secret
  3171. resource is used as the app role secret.</p>
  3172. </td>
  3173. </tr>
  3174. </tbody>
  3175. </table>
  3176. <h3 id="external-secrets.io/v1alpha1.VaultAuth">VaultAuth
  3177. </h3>
  3178. <p>
  3179. (<em>Appears on:</em>
  3180. <a href="#external-secrets.io/v1alpha1.VaultProvider">VaultProvider</a>)
  3181. </p>
  3182. <p>
  3183. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  3184. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>jwt</code> or <code>cert</code>
  3185. can be specified.</p>
  3186. </p>
  3187. <table>
  3188. <thead>
  3189. <tr>
  3190. <th>Field</th>
  3191. <th>Description</th>
  3192. </tr>
  3193. </thead>
  3194. <tbody>
  3195. <tr>
  3196. <td>
  3197. <code>tokenSecretRef</code></br>
  3198. <em>
  3199. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3200. </em>
  3201. </td>
  3202. <td>
  3203. <em>(Optional)</em>
  3204. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  3205. </td>
  3206. </tr>
  3207. <tr>
  3208. <td>
  3209. <code>appRole</code></br>
  3210. <em>
  3211. <a href="#external-secrets.io/v1alpha1.VaultAppRole">
  3212. VaultAppRole
  3213. </a>
  3214. </em>
  3215. </td>
  3216. <td>
  3217. <em>(Optional)</em>
  3218. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  3219. with the role and secret stored in a Kubernetes Secret resource.</p>
  3220. </td>
  3221. </tr>
  3222. <tr>
  3223. <td>
  3224. <code>kubernetes</code></br>
  3225. <em>
  3226. <a href="#external-secrets.io/v1alpha1.VaultKubernetesAuth">
  3227. VaultKubernetesAuth
  3228. </a>
  3229. </em>
  3230. </td>
  3231. <td>
  3232. <em>(Optional)</em>
  3233. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  3234. token stored in the named Secret resource to the Vault server.</p>
  3235. </td>
  3236. </tr>
  3237. <tr>
  3238. <td>
  3239. <code>ldap</code></br>
  3240. <em>
  3241. <a href="#external-secrets.io/v1alpha1.VaultLdapAuth">
  3242. VaultLdapAuth
  3243. </a>
  3244. </em>
  3245. </td>
  3246. <td>
  3247. <em>(Optional)</em>
  3248. <p>Ldap authenticates with Vault by passing username/password pair using
  3249. the LDAP authentication method</p>
  3250. </td>
  3251. </tr>
  3252. <tr>
  3253. <td>
  3254. <code>jwt</code></br>
  3255. <em>
  3256. <a href="#external-secrets.io/v1alpha1.VaultJwtAuth">
  3257. VaultJwtAuth
  3258. </a>
  3259. </em>
  3260. </td>
  3261. <td>
  3262. <em>(Optional)</em>
  3263. <p>Jwt authenticates with Vault by passing role and JWT token using the
  3264. JWT/OIDC authentication method</p>
  3265. </td>
  3266. </tr>
  3267. <tr>
  3268. <td>
  3269. <code>cert</code></br>
  3270. <em>
  3271. <a href="#external-secrets.io/v1alpha1.VaultCertAuth">
  3272. VaultCertAuth
  3273. </a>
  3274. </em>
  3275. </td>
  3276. <td>
  3277. <em>(Optional)</em>
  3278. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  3279. Cert authentication method</p>
  3280. </td>
  3281. </tr>
  3282. </tbody>
  3283. </table>
  3284. <h3 id="external-secrets.io/v1alpha1.VaultCertAuth">VaultCertAuth
  3285. </h3>
  3286. <p>
  3287. (<em>Appears on:</em>
  3288. <a href="#external-secrets.io/v1alpha1.VaultAuth">VaultAuth</a>)
  3289. </p>
  3290. <p>
  3291. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  3292. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  3293. </p>
  3294. <table>
  3295. <thead>
  3296. <tr>
  3297. <th>Field</th>
  3298. <th>Description</th>
  3299. </tr>
  3300. </thead>
  3301. <tbody>
  3302. <tr>
  3303. <td>
  3304. <code>clientCert</code></br>
  3305. <em>
  3306. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3307. </em>
  3308. </td>
  3309. <td>
  3310. <em>(Optional)</em>
  3311. <p>ClientCert is a certificate to authenticate using the Cert Vault
  3312. authentication method</p>
  3313. </td>
  3314. </tr>
  3315. <tr>
  3316. <td>
  3317. <code>secretRef</code></br>
  3318. <em>
  3319. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3320. </em>
  3321. </td>
  3322. <td>
  3323. <p>SecretRef to a key in a Secret resource containing client private key to
  3324. authenticate with Vault using the Cert authentication method</p>
  3325. </td>
  3326. </tr>
  3327. </tbody>
  3328. </table>
  3329. <h3 id="external-secrets.io/v1alpha1.VaultJwtAuth">VaultJwtAuth
  3330. </h3>
  3331. <p>
  3332. (<em>Appears on:</em>
  3333. <a href="#external-secrets.io/v1alpha1.VaultAuth">VaultAuth</a>)
  3334. </p>
  3335. <p>
  3336. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  3337. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  3338. </p>
  3339. <table>
  3340. <thead>
  3341. <tr>
  3342. <th>Field</th>
  3343. <th>Description</th>
  3344. </tr>
  3345. </thead>
  3346. <tbody>
  3347. <tr>
  3348. <td>
  3349. <code>path</code></br>
  3350. <em>
  3351. string
  3352. </em>
  3353. </td>
  3354. <td>
  3355. <p>Path where the JWT authentication backend is mounted
  3356. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  3357. </td>
  3358. </tr>
  3359. <tr>
  3360. <td>
  3361. <code>role</code></br>
  3362. <em>
  3363. string
  3364. </em>
  3365. </td>
  3366. <td>
  3367. <em>(Optional)</em>
  3368. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  3369. authentication method</p>
  3370. </td>
  3371. </tr>
  3372. <tr>
  3373. <td>
  3374. <code>secretRef</code></br>
  3375. <em>
  3376. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3377. </em>
  3378. </td>
  3379. <td>
  3380. <p>SecretRef to a key in a Secret resource containing JWT token to
  3381. authenticate with Vault using the JWT/OIDC authentication method</p>
  3382. </td>
  3383. </tr>
  3384. </tbody>
  3385. </table>
  3386. <h3 id="external-secrets.io/v1alpha1.VaultKVStoreVersion">VaultKVStoreVersion
  3387. (<code>string</code> alias)</p></h3>
  3388. <p>
  3389. (<em>Appears on:</em>
  3390. <a href="#external-secrets.io/v1alpha1.VaultProvider">VaultProvider</a>)
  3391. </p>
  3392. <p>
  3393. </p>
  3394. <table>
  3395. <thead>
  3396. <tr>
  3397. <th>Value</th>
  3398. <th>Description</th>
  3399. </tr>
  3400. </thead>
  3401. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  3402. <td></td>
  3403. </tr><tr><td><p>&#34;v2&#34;</p></td>
  3404. <td></td>
  3405. </tr></tbody>
  3406. </table>
  3407. <h3 id="external-secrets.io/v1alpha1.VaultKubernetesAuth">VaultKubernetesAuth
  3408. </h3>
  3409. <p>
  3410. (<em>Appears on:</em>
  3411. <a href="#external-secrets.io/v1alpha1.VaultAuth">VaultAuth</a>)
  3412. </p>
  3413. <p>
  3414. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  3415. a Secret.</p>
  3416. </p>
  3417. <table>
  3418. <thead>
  3419. <tr>
  3420. <th>Field</th>
  3421. <th>Description</th>
  3422. </tr>
  3423. </thead>
  3424. <tbody>
  3425. <tr>
  3426. <td>
  3427. <code>mountPath</code></br>
  3428. <em>
  3429. string
  3430. </em>
  3431. </td>
  3432. <td>
  3433. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  3434. &ldquo;kubernetes&rdquo;</p>
  3435. </td>
  3436. </tr>
  3437. <tr>
  3438. <td>
  3439. <code>serviceAccountRef</code></br>
  3440. <em>
  3441. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  3442. </em>
  3443. </td>
  3444. <td>
  3445. <em>(Optional)</em>
  3446. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  3447. If the service account is specified, the service account secret token JWT will be used
  3448. for authenticating with Vault. If the service account selector is not supplied,
  3449. the secretRef will be used instead.</p>
  3450. </td>
  3451. </tr>
  3452. <tr>
  3453. <td>
  3454. <code>secretRef</code></br>
  3455. <em>
  3456. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3457. </em>
  3458. </td>
  3459. <td>
  3460. <em>(Optional)</em>
  3461. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  3462. for authenticating with Vault. If a name is specified without a key,
  3463. <code>token</code> is the default. If one is not specified, the one bound to
  3464. the controller will be used.</p>
  3465. </td>
  3466. </tr>
  3467. <tr>
  3468. <td>
  3469. <code>role</code></br>
  3470. <em>
  3471. string
  3472. </em>
  3473. </td>
  3474. <td>
  3475. <p>A required field containing the Vault Role to assume. A Role binds a
  3476. Kubernetes ServiceAccount with a set of Vault policies.</p>
  3477. </td>
  3478. </tr>
  3479. </tbody>
  3480. </table>
  3481. <h3 id="external-secrets.io/v1alpha1.VaultLdapAuth">VaultLdapAuth
  3482. </h3>
  3483. <p>
  3484. (<em>Appears on:</em>
  3485. <a href="#external-secrets.io/v1alpha1.VaultAuth">VaultAuth</a>)
  3486. </p>
  3487. <p>
  3488. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  3489. with the username and password stored in a Kubernetes Secret resource.</p>
  3490. </p>
  3491. <table>
  3492. <thead>
  3493. <tr>
  3494. <th>Field</th>
  3495. <th>Description</th>
  3496. </tr>
  3497. </thead>
  3498. <tbody>
  3499. <tr>
  3500. <td>
  3501. <code>path</code></br>
  3502. <em>
  3503. string
  3504. </em>
  3505. </td>
  3506. <td>
  3507. <p>Path where the LDAP authentication backend is mounted
  3508. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  3509. </td>
  3510. </tr>
  3511. <tr>
  3512. <td>
  3513. <code>username</code></br>
  3514. <em>
  3515. string
  3516. </em>
  3517. </td>
  3518. <td>
  3519. <p>Username is a LDAP user name used to authenticate using the LDAP Vault
  3520. authentication method</p>
  3521. </td>
  3522. </tr>
  3523. <tr>
  3524. <td>
  3525. <code>secretRef</code></br>
  3526. <em>
  3527. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3528. </em>
  3529. </td>
  3530. <td>
  3531. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  3532. user used to authenticate with Vault using the LDAP authentication
  3533. method</p>
  3534. </td>
  3535. </tr>
  3536. </tbody>
  3537. </table>
  3538. <h3 id="external-secrets.io/v1alpha1.VaultProvider">VaultProvider
  3539. </h3>
  3540. <p>
  3541. (<em>Appears on:</em>
  3542. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  3543. </p>
  3544. <p>
  3545. <p>Configures an store to sync secrets using a HashiCorp Vault
  3546. KV backend.</p>
  3547. </p>
  3548. <table>
  3549. <thead>
  3550. <tr>
  3551. <th>Field</th>
  3552. <th>Description</th>
  3553. </tr>
  3554. </thead>
  3555. <tbody>
  3556. <tr>
  3557. <td>
  3558. <code>auth</code></br>
  3559. <em>
  3560. <a href="#external-secrets.io/v1alpha1.VaultAuth">
  3561. VaultAuth
  3562. </a>
  3563. </em>
  3564. </td>
  3565. <td>
  3566. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  3567. </td>
  3568. </tr>
  3569. <tr>
  3570. <td>
  3571. <code>server</code></br>
  3572. <em>
  3573. string
  3574. </em>
  3575. </td>
  3576. <td>
  3577. <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>
  3578. </td>
  3579. </tr>
  3580. <tr>
  3581. <td>
  3582. <code>path</code></br>
  3583. <em>
  3584. string
  3585. </em>
  3586. </td>
  3587. <td>
  3588. <em>(Optional)</em>
  3589. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  3590. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  3591. for fetching secrets from Vault is optional and will be appended
  3592. if not present in specified path.</p>
  3593. </td>
  3594. </tr>
  3595. <tr>
  3596. <td>
  3597. <code>version</code></br>
  3598. <em>
  3599. <a href="#external-secrets.io/v1alpha1.VaultKVStoreVersion">
  3600. VaultKVStoreVersion
  3601. </a>
  3602. </em>
  3603. </td>
  3604. <td>
  3605. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  3606. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  3607. </td>
  3608. </tr>
  3609. <tr>
  3610. <td>
  3611. <code>namespace</code></br>
  3612. <em>
  3613. string
  3614. </em>
  3615. </td>
  3616. <td>
  3617. <em>(Optional)</em>
  3618. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  3619. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  3620. 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>
  3621. </td>
  3622. </tr>
  3623. <tr>
  3624. <td>
  3625. <code>caBundle</code></br>
  3626. <em>
  3627. []byte
  3628. </em>
  3629. </td>
  3630. <td>
  3631. <em>(Optional)</em>
  3632. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  3633. if the Server URL is using HTTPS protocol. This parameter is ignored for
  3634. plain HTTP protocol connection. If not set the system root certificates
  3635. are used to validate the TLS connection.</p>
  3636. </td>
  3637. </tr>
  3638. <tr>
  3639. <td>
  3640. <code>caProvider</code></br>
  3641. <em>
  3642. <a href="#external-secrets.io/v1alpha1.CAProvider">
  3643. CAProvider
  3644. </a>
  3645. </em>
  3646. </td>
  3647. <td>
  3648. <em>(Optional)</em>
  3649. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  3650. </td>
  3651. </tr>
  3652. </tbody>
  3653. </table>
  3654. <h3 id="external-secrets.io/v1alpha1.WebhookCAProvider">WebhookCAProvider
  3655. </h3>
  3656. <p>
  3657. (<em>Appears on:</em>
  3658. <a href="#external-secrets.io/v1alpha1.WebhookProvider">WebhookProvider</a>)
  3659. </p>
  3660. <p>
  3661. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  3662. </p>
  3663. <table>
  3664. <thead>
  3665. <tr>
  3666. <th>Field</th>
  3667. <th>Description</th>
  3668. </tr>
  3669. </thead>
  3670. <tbody>
  3671. <tr>
  3672. <td>
  3673. <code>type</code></br>
  3674. <em>
  3675. <a href="#external-secrets.io/v1alpha1.WebhookCAProviderType">
  3676. WebhookCAProviderType
  3677. </a>
  3678. </em>
  3679. </td>
  3680. <td>
  3681. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  3682. </td>
  3683. </tr>
  3684. <tr>
  3685. <td>
  3686. <code>name</code></br>
  3687. <em>
  3688. string
  3689. </em>
  3690. </td>
  3691. <td>
  3692. <p>The name of the object located at the provider type.</p>
  3693. </td>
  3694. </tr>
  3695. <tr>
  3696. <td>
  3697. <code>key</code></br>
  3698. <em>
  3699. string
  3700. </em>
  3701. </td>
  3702. <td>
  3703. <p>The key the value inside of the provider type to use, only used with &ldquo;Secret&rdquo; type</p>
  3704. </td>
  3705. </tr>
  3706. <tr>
  3707. <td>
  3708. <code>namespace</code></br>
  3709. <em>
  3710. string
  3711. </em>
  3712. </td>
  3713. <td>
  3714. <em>(Optional)</em>
  3715. <p>The namespace the Provider type is in.</p>
  3716. </td>
  3717. </tr>
  3718. </tbody>
  3719. </table>
  3720. <h3 id="external-secrets.io/v1alpha1.WebhookCAProviderType">WebhookCAProviderType
  3721. (<code>string</code> alias)</p></h3>
  3722. <p>
  3723. (<em>Appears on:</em>
  3724. <a href="#external-secrets.io/v1alpha1.WebhookCAProvider">WebhookCAProvider</a>)
  3725. </p>
  3726. <p>
  3727. </p>
  3728. <table>
  3729. <thead>
  3730. <tr>
  3731. <th>Value</th>
  3732. <th>Description</th>
  3733. </tr>
  3734. </thead>
  3735. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  3736. <td></td>
  3737. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  3738. <td></td>
  3739. </tr></tbody>
  3740. </table>
  3741. <h3 id="external-secrets.io/v1alpha1.WebhookProvider">WebhookProvider
  3742. </h3>
  3743. <p>
  3744. (<em>Appears on:</em>
  3745. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  3746. </p>
  3747. <p>
  3748. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  3749. </p>
  3750. <table>
  3751. <thead>
  3752. <tr>
  3753. <th>Field</th>
  3754. <th>Description</th>
  3755. </tr>
  3756. </thead>
  3757. <tbody>
  3758. <tr>
  3759. <td>
  3760. <code>method</code></br>
  3761. <em>
  3762. string
  3763. </em>
  3764. </td>
  3765. <td>
  3766. <p>Webhook Method</p>
  3767. </td>
  3768. </tr>
  3769. <tr>
  3770. <td>
  3771. <code>url</code></br>
  3772. <em>
  3773. string
  3774. </em>
  3775. </td>
  3776. <td>
  3777. <p>Webhook url to call</p>
  3778. </td>
  3779. </tr>
  3780. <tr>
  3781. <td>
  3782. <code>headers</code></br>
  3783. <em>
  3784. map[string]string
  3785. </em>
  3786. </td>
  3787. <td>
  3788. <em>(Optional)</em>
  3789. <p>Headers</p>
  3790. </td>
  3791. </tr>
  3792. <tr>
  3793. <td>
  3794. <code>body</code></br>
  3795. <em>
  3796. string
  3797. </em>
  3798. </td>
  3799. <td>
  3800. <em>(Optional)</em>
  3801. <p>Body</p>
  3802. </td>
  3803. </tr>
  3804. <tr>
  3805. <td>
  3806. <code>timeout</code></br>
  3807. <em>
  3808. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  3809. Kubernetes meta/v1.Duration
  3810. </a>
  3811. </em>
  3812. </td>
  3813. <td>
  3814. <em>(Optional)</em>
  3815. <p>Timeout</p>
  3816. </td>
  3817. </tr>
  3818. <tr>
  3819. <td>
  3820. <code>result</code></br>
  3821. <em>
  3822. <a href="#external-secrets.io/v1alpha1.WebhookResult">
  3823. WebhookResult
  3824. </a>
  3825. </em>
  3826. </td>
  3827. <td>
  3828. <p>Result formatting</p>
  3829. </td>
  3830. </tr>
  3831. <tr>
  3832. <td>
  3833. <code>secrets</code></br>
  3834. <em>
  3835. <a href="#external-secrets.io/v1alpha1.WebhookSecret">
  3836. []WebhookSecret
  3837. </a>
  3838. </em>
  3839. </td>
  3840. <td>
  3841. <em>(Optional)</em>
  3842. <p>Secrets to fill in templates
  3843. These secrets will be passed to the templating function as key value pairs under the given name</p>
  3844. </td>
  3845. </tr>
  3846. <tr>
  3847. <td>
  3848. <code>caBundle</code></br>
  3849. <em>
  3850. []byte
  3851. </em>
  3852. </td>
  3853. <td>
  3854. <em>(Optional)</em>
  3855. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  3856. if the Server URL is using HTTPS protocol. This parameter is ignored for
  3857. plain HTTP protocol connection. If not set the system root certificates
  3858. are used to validate the TLS connection.</p>
  3859. </td>
  3860. </tr>
  3861. <tr>
  3862. <td>
  3863. <code>caProvider</code></br>
  3864. <em>
  3865. <a href="#external-secrets.io/v1alpha1.WebhookCAProvider">
  3866. WebhookCAProvider
  3867. </a>
  3868. </em>
  3869. </td>
  3870. <td>
  3871. <em>(Optional)</em>
  3872. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  3873. </td>
  3874. </tr>
  3875. </tbody>
  3876. </table>
  3877. <h3 id="external-secrets.io/v1alpha1.WebhookResult">WebhookResult
  3878. </h3>
  3879. <p>
  3880. (<em>Appears on:</em>
  3881. <a href="#external-secrets.io/v1alpha1.WebhookProvider">WebhookProvider</a>)
  3882. </p>
  3883. <p>
  3884. </p>
  3885. <table>
  3886. <thead>
  3887. <tr>
  3888. <th>Field</th>
  3889. <th>Description</th>
  3890. </tr>
  3891. </thead>
  3892. <tbody>
  3893. <tr>
  3894. <td>
  3895. <code>jsonPath</code></br>
  3896. <em>
  3897. string
  3898. </em>
  3899. </td>
  3900. <td>
  3901. <em>(Optional)</em>
  3902. <p>Json path of return value</p>
  3903. </td>
  3904. </tr>
  3905. </tbody>
  3906. </table>
  3907. <h3 id="external-secrets.io/v1alpha1.WebhookSecret">WebhookSecret
  3908. </h3>
  3909. <p>
  3910. (<em>Appears on:</em>
  3911. <a href="#external-secrets.io/v1alpha1.WebhookProvider">WebhookProvider</a>)
  3912. </p>
  3913. <p>
  3914. </p>
  3915. <table>
  3916. <thead>
  3917. <tr>
  3918. <th>Field</th>
  3919. <th>Description</th>
  3920. </tr>
  3921. </thead>
  3922. <tbody>
  3923. <tr>
  3924. <td>
  3925. <code>name</code></br>
  3926. <em>
  3927. string
  3928. </em>
  3929. </td>
  3930. <td>
  3931. <p>Name of this secret in templates</p>
  3932. </td>
  3933. </tr>
  3934. <tr>
  3935. <td>
  3936. <code>secretRef</code></br>
  3937. <em>
  3938. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3939. </em>
  3940. </td>
  3941. <td>
  3942. <p>Secret ref to fill in credentials</p>
  3943. </td>
  3944. </tr>
  3945. </tbody>
  3946. </table>
  3947. <h3 id="external-secrets.io/v1alpha1.YandexLockboxAuth">YandexLockboxAuth
  3948. </h3>
  3949. <p>
  3950. (<em>Appears on:</em>
  3951. <a href="#external-secrets.io/v1alpha1.YandexLockboxProvider">YandexLockboxProvider</a>)
  3952. </p>
  3953. <p>
  3954. </p>
  3955. <table>
  3956. <thead>
  3957. <tr>
  3958. <th>Field</th>
  3959. <th>Description</th>
  3960. </tr>
  3961. </thead>
  3962. <tbody>
  3963. <tr>
  3964. <td>
  3965. <code>authorizedKeySecretRef</code></br>
  3966. <em>
  3967. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3968. </em>
  3969. </td>
  3970. <td>
  3971. <em>(Optional)</em>
  3972. <p>The authorized key used for authentication</p>
  3973. </td>
  3974. </tr>
  3975. </tbody>
  3976. </table>
  3977. <h3 id="external-secrets.io/v1alpha1.YandexLockboxCAProvider">YandexLockboxCAProvider
  3978. </h3>
  3979. <p>
  3980. (<em>Appears on:</em>
  3981. <a href="#external-secrets.io/v1alpha1.YandexLockboxProvider">YandexLockboxProvider</a>)
  3982. </p>
  3983. <p>
  3984. </p>
  3985. <table>
  3986. <thead>
  3987. <tr>
  3988. <th>Field</th>
  3989. <th>Description</th>
  3990. </tr>
  3991. </thead>
  3992. <tbody>
  3993. <tr>
  3994. <td>
  3995. <code>certSecretRef</code></br>
  3996. <em>
  3997. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3998. </em>
  3999. </td>
  4000. <td>
  4001. </td>
  4002. </tr>
  4003. </tbody>
  4004. </table>
  4005. <h3 id="external-secrets.io/v1alpha1.YandexLockboxProvider">YandexLockboxProvider
  4006. </h3>
  4007. <p>
  4008. (<em>Appears on:</em>
  4009. <a href="#external-secrets.io/v1alpha1.SecretStoreProvider">SecretStoreProvider</a>)
  4010. </p>
  4011. <p>
  4012. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  4013. </p>
  4014. <table>
  4015. <thead>
  4016. <tr>
  4017. <th>Field</th>
  4018. <th>Description</th>
  4019. </tr>
  4020. </thead>
  4021. <tbody>
  4022. <tr>
  4023. <td>
  4024. <code>apiEndpoint</code></br>
  4025. <em>
  4026. string
  4027. </em>
  4028. </td>
  4029. <td>
  4030. <em>(Optional)</em>
  4031. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  4032. </td>
  4033. </tr>
  4034. <tr>
  4035. <td>
  4036. <code>auth</code></br>
  4037. <em>
  4038. <a href="#external-secrets.io/v1alpha1.YandexLockboxAuth">
  4039. YandexLockboxAuth
  4040. </a>
  4041. </em>
  4042. </td>
  4043. <td>
  4044. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  4045. </td>
  4046. </tr>
  4047. <tr>
  4048. <td>
  4049. <code>caProvider</code></br>
  4050. <em>
  4051. <a href="#external-secrets.io/v1alpha1.YandexLockboxCAProvider">
  4052. YandexLockboxCAProvider
  4053. </a>
  4054. </em>
  4055. </td>
  4056. <td>
  4057. <em>(Optional)</em>
  4058. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  4059. </td>
  4060. </tr>
  4061. </tbody>
  4062. </table>
  4063. <hr/>
  4064. <p><em>
  4065. Generated with <code>gen-crd-api-reference-docs</code>.
  4066. </em></p></p>
  4067. </article>
  4068. </div>
  4069. </div>
  4070. </main>
  4071. <footer class="md-footer">
  4072. <nav class="md-footer__inner md-grid" aria-label="Footer">
  4073. <a href="../provider-webhook/" class="md-footer__link md-footer__link--prev" aria-label="Previous: Webhook" rel="prev">
  4074. <div class="md-footer__button md-icon">
  4075. <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>
  4076. </div>
  4077. <div class="md-footer__title">
  4078. <div class="md-ellipsis">
  4079. <span class="md-footer__direction">
  4080. Previous
  4081. </span>
  4082. Webhook
  4083. </div>
  4084. </div>
  4085. </a>
  4086. <a href="../contributing-devguide/" class="md-footer__link md-footer__link--next" aria-label="Next: Developer guide" rel="next">
  4087. <div class="md-footer__title">
  4088. <div class="md-ellipsis">
  4089. <span class="md-footer__direction">
  4090. Next
  4091. </span>
  4092. Developer guide
  4093. </div>
  4094. </div>
  4095. <div class="md-footer__button md-icon">
  4096. <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>
  4097. </div>
  4098. </a>
  4099. </nav>
  4100. <div class="md-footer-meta md-typeset">
  4101. <div class="md-footer-meta__inner md-grid">
  4102. <div class="md-footer-copyright">
  4103. Made with
  4104. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  4105. Material for MkDocs
  4106. </a>
  4107. </div>
  4108. </div>
  4109. </div>
  4110. </footer>
  4111. </div>
  4112. <div class="md-dialog" data-md-component="dialog">
  4113. <div class="md-dialog__inner md-typeset"></div>
  4114. </div>
  4115. <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>
  4116. <script src="../assets/javascripts/bundle.76f349be.min.js"></script>
  4117. </body>
  4118. </html>