index.html 104 KB

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