index.html 135 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148
  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-all-keys-one-secret/" class="md-nav__link">
  219. All keys, One secret
  220. </a>
  221. </li>
  222. <li class="md-nav__item">
  223. <a href="../guides-common-k8s-secret-types/" class="md-nav__link">
  224. Common K8S Secret Types
  225. </a>
  226. </li>
  227. <li class="md-nav__item">
  228. <a href="../guides-controller-class/" class="md-nav__link">
  229. Controller Classes
  230. </a>
  231. </li>
  232. <li class="md-nav__item">
  233. <a href="../guides-ownership-deletion-policy/" class="md-nav__link">
  234. Lifecycle: ownership & deletion
  235. </a>
  236. </li>
  237. <li class="md-nav__item">
  238. <a href="../guides-decoding-strategy/" class="md-nav__link">
  239. Decoding Strategies
  240. </a>
  241. </li>
  242. <li class="md-nav__item">
  243. <a href="../guides-getallsecrets/" class="md-nav__link">
  244. Getting Multiple Secrets
  245. </a>
  246. </li>
  247. <li class="md-nav__item">
  248. <a href="../guides-multi-tenancy/" class="md-nav__link">
  249. Multi Tenancy
  250. </a>
  251. </li>
  252. <li class="md-nav__item">
  253. <a href="../guides-metrics/" class="md-nav__link">
  254. Metrics
  255. </a>
  256. </li>
  257. <li class="md-nav__item">
  258. <a href="../guides-datafrom-rewrite/" class="md-nav__link">
  259. Rewriting Keys
  260. </a>
  261. </li>
  262. <li class="md-nav__item">
  263. <a href="../guides-v1beta1/" class="md-nav__link">
  264. Upgrading to v1beta1
  265. </a>
  266. </li>
  267. <li class="md-nav__item">
  268. <a href="../guides-using-latest-image/" class="md-nav__link">
  269. Using Latest Image
  270. </a>
  271. </li>
  272. </ul>
  273. </nav>
  274. </li>
  275. <li class="md-nav__item md-nav__item--nested">
  276. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5" type="checkbox" id="__nav_5" >
  277. <label class="md-nav__link" for="__nav_5">
  278. Provider
  279. <span class="md-nav__icon md-icon"></span>
  280. </label>
  281. <nav class="md-nav" aria-label="Provider" data-md-level="1">
  282. <label class="md-nav__title" for="__nav_5">
  283. <span class="md-nav__icon md-icon"></span>
  284. Provider
  285. </label>
  286. <ul class="md-nav__list" data-md-scrollfix>
  287. <li class="md-nav__item md-nav__item--nested">
  288. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_1" type="checkbox" id="__nav_5_1" >
  289. <label class="md-nav__link" for="__nav_5_1">
  290. AWS
  291. <span class="md-nav__icon md-icon"></span>
  292. </label>
  293. <nav class="md-nav" aria-label="AWS" data-md-level="2">
  294. <label class="md-nav__title" for="__nav_5_1">
  295. <span class="md-nav__icon md-icon"></span>
  296. AWS
  297. </label>
  298. <ul class="md-nav__list" data-md-scrollfix>
  299. <li class="md-nav__item">
  300. <a href="../provider-aws-secrets-manager/" class="md-nav__link">
  301. Secrets Manager
  302. </a>
  303. </li>
  304. <li class="md-nav__item">
  305. <a href="../provider-aws-parameter-store/" class="md-nav__link">
  306. Parameter Store
  307. </a>
  308. </li>
  309. </ul>
  310. </nav>
  311. </li>
  312. <li class="md-nav__item md-nav__item--nested">
  313. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_2" type="checkbox" id="__nav_5_2" >
  314. <label class="md-nav__link" for="__nav_5_2">
  315. Azure
  316. <span class="md-nav__icon md-icon"></span>
  317. </label>
  318. <nav class="md-nav" aria-label="Azure" data-md-level="2">
  319. <label class="md-nav__title" for="__nav_5_2">
  320. <span class="md-nav__icon md-icon"></span>
  321. Azure
  322. </label>
  323. <ul class="md-nav__list" data-md-scrollfix>
  324. <li class="md-nav__item">
  325. <a href="../provider-azure-key-vault/" class="md-nav__link">
  326. Key Vault
  327. </a>
  328. </li>
  329. </ul>
  330. </nav>
  331. </li>
  332. <li class="md-nav__item md-nav__item--nested">
  333. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_3" type="checkbox" id="__nav_5_3" >
  334. <label class="md-nav__link" for="__nav_5_3">
  335. Google
  336. <span class="md-nav__icon md-icon"></span>
  337. </label>
  338. <nav class="md-nav" aria-label="Google" data-md-level="2">
  339. <label class="md-nav__title" for="__nav_5_3">
  340. <span class="md-nav__icon md-icon"></span>
  341. Google
  342. </label>
  343. <ul class="md-nav__list" data-md-scrollfix>
  344. <li class="md-nav__item">
  345. <a href="../provider-google-secrets-manager/" class="md-nav__link">
  346. Secret Manager
  347. </a>
  348. </li>
  349. </ul>
  350. </nav>
  351. </li>
  352. <li class="md-nav__item md-nav__item--nested">
  353. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_4" type="checkbox" id="__nav_5_4" >
  354. <label class="md-nav__link" for="__nav_5_4">
  355. IBM
  356. <span class="md-nav__icon md-icon"></span>
  357. </label>
  358. <nav class="md-nav" aria-label="IBM" data-md-level="2">
  359. <label class="md-nav__title" for="__nav_5_4">
  360. <span class="md-nav__icon md-icon"></span>
  361. IBM
  362. </label>
  363. <ul class="md-nav__list" data-md-scrollfix>
  364. <li class="md-nav__item">
  365. <a href="../provider-ibm-secrets-manager/" class="md-nav__link">
  366. Secrets Manager
  367. </a>
  368. </li>
  369. </ul>
  370. </nav>
  371. </li>
  372. <li class="md-nav__item">
  373. <a href="../provider-akeyless/" class="md-nav__link">
  374. Akeyless
  375. </a>
  376. </li>
  377. <li class="md-nav__item">
  378. <a href="../provider-hashicorp-vault/" class="md-nav__link">
  379. HashiCorp Vault
  380. </a>
  381. </li>
  382. <li class="md-nav__item md-nav__item--nested">
  383. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_7" type="checkbox" id="__nav_5_7" >
  384. <label class="md-nav__link" for="__nav_5_7">
  385. Yandex
  386. <span class="md-nav__icon md-icon"></span>
  387. </label>
  388. <nav class="md-nav" aria-label="Yandex" data-md-level="2">
  389. <label class="md-nav__title" for="__nav_5_7">
  390. <span class="md-nav__icon md-icon"></span>
  391. Yandex
  392. </label>
  393. <ul class="md-nav__list" data-md-scrollfix>
  394. <li class="md-nav__item">
  395. <a href="../provider-yandex-certificate-manager/" class="md-nav__link">
  396. Certificate Manager
  397. </a>
  398. </li>
  399. <li class="md-nav__item">
  400. <a href="../provider-yandex-lockbox/" class="md-nav__link">
  401. Lockbox
  402. </a>
  403. </li>
  404. </ul>
  405. </nav>
  406. </li>
  407. <li class="md-nav__item md-nav__item--nested">
  408. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_8" type="checkbox" id="__nav_5_8" >
  409. <label class="md-nav__link" for="__nav_5_8">
  410. Gitlab
  411. <span class="md-nav__icon md-icon"></span>
  412. </label>
  413. <nav class="md-nav" aria-label="Gitlab" data-md-level="2">
  414. <label class="md-nav__title" for="__nav_5_8">
  415. <span class="md-nav__icon md-icon"></span>
  416. Gitlab
  417. </label>
  418. <ul class="md-nav__list" data-md-scrollfix>
  419. <li class="md-nav__item">
  420. <a href="../provider-gitlab-project-variables/" class="md-nav__link">
  421. Gitlab Project Variables
  422. </a>
  423. </li>
  424. </ul>
  425. </nav>
  426. </li>
  427. <li class="md-nav__item md-nav__item--nested">
  428. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_9" type="checkbox" id="__nav_5_9" >
  429. <label class="md-nav__link" for="__nav_5_9">
  430. Oracle
  431. <span class="md-nav__icon md-icon"></span>
  432. </label>
  433. <nav class="md-nav" aria-label="Oracle" data-md-level="2">
  434. <label class="md-nav__title" for="__nav_5_9">
  435. <span class="md-nav__icon md-icon"></span>
  436. Oracle
  437. </label>
  438. <ul class="md-nav__list" data-md-scrollfix>
  439. <li class="md-nav__item">
  440. <a href="../provider-oracle-vault/" class="md-nav__link">
  441. Oracle Vault
  442. </a>
  443. </li>
  444. </ul>
  445. </nav>
  446. </li>
  447. <li class="md-nav__item md-nav__item--nested">
  448. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_10" type="checkbox" id="__nav_5_10" >
  449. <label class="md-nav__link" for="__nav_5_10">
  450. 1Password
  451. <span class="md-nav__icon md-icon"></span>
  452. </label>
  453. <nav class="md-nav" aria-label="1Password" data-md-level="2">
  454. <label class="md-nav__title" for="__nav_5_10">
  455. <span class="md-nav__icon md-icon"></span>
  456. 1Password
  457. </label>
  458. <ul class="md-nav__list" data-md-scrollfix>
  459. <li class="md-nav__item">
  460. <a href="../provider-1password-automation/" class="md-nav__link">
  461. Secrets Automation
  462. </a>
  463. </li>
  464. </ul>
  465. </nav>
  466. </li>
  467. <li class="md-nav__item">
  468. <a href="../provider-webhook/" class="md-nav__link">
  469. Webhook
  470. </a>
  471. </li>
  472. <li class="md-nav__item">
  473. <a href="../provider-fake/" class="md-nav__link">
  474. Fake
  475. </a>
  476. </li>
  477. <li class="md-nav__item">
  478. <a href="../provider-kubernetes/" class="md-nav__link">
  479. Kubernetes
  480. </a>
  481. </li>
  482. <li class="md-nav__item md-nav__item--nested">
  483. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_5_14" type="checkbox" id="__nav_5_14" >
  484. <label class="md-nav__link" for="__nav_5_14">
  485. senhasegura
  486. <span class="md-nav__icon md-icon"></span>
  487. </label>
  488. <nav class="md-nav" aria-label="senhasegura" data-md-level="2">
  489. <label class="md-nav__title" for="__nav_5_14">
  490. <span class="md-nav__icon md-icon"></span>
  491. senhasegura
  492. </label>
  493. <ul class="md-nav__list" data-md-scrollfix>
  494. <li class="md-nav__item">
  495. <a href="../provider-senhasegura-dsm/" class="md-nav__link">
  496. DevOps Secrets Management (DSM)
  497. </a>
  498. </li>
  499. </ul>
  500. </nav>
  501. </li>
  502. </ul>
  503. </nav>
  504. </li>
  505. <li class="md-nav__item md-nav__item--nested">
  506. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_6" type="checkbox" id="__nav_6" >
  507. <label class="md-nav__link" for="__nav_6">
  508. Examples
  509. <span class="md-nav__icon md-icon"></span>
  510. </label>
  511. <nav class="md-nav" aria-label="Examples" data-md-level="1">
  512. <label class="md-nav__title" for="__nav_6">
  513. <span class="md-nav__icon md-icon"></span>
  514. Examples
  515. </label>
  516. <ul class="md-nav__list" data-md-scrollfix>
  517. <li class="md-nav__item">
  518. <a href="../examples-gitops-using-fluxcd/" class="md-nav__link">
  519. FluxCD
  520. </a>
  521. </li>
  522. <li class="md-nav__item">
  523. <a href="../examples-anchore-engine-credentials/" class="md-nav__link">
  524. Anchore Engine
  525. </a>
  526. </li>
  527. <li class="md-nav__item">
  528. <a href="../examples-jenkins-kubernetes-credentials/" class="md-nav__link">
  529. Jenkins
  530. </a>
  531. </li>
  532. </ul>
  533. </nav>
  534. </li>
  535. <li class="md-nav__item md-nav__item--nested">
  536. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_7" type="checkbox" id="__nav_7" >
  537. <label class="md-nav__link" for="__nav_7">
  538. External Resources
  539. <span class="md-nav__icon md-icon"></span>
  540. </label>
  541. <nav class="md-nav" aria-label="External Resources" data-md-level="1">
  542. <label class="md-nav__title" for="__nav_7">
  543. <span class="md-nav__icon md-icon"></span>
  544. External Resources
  545. </label>
  546. <ul class="md-nav__list" data-md-scrollfix>
  547. <li class="md-nav__item">
  548. <a href="../eso-talks/" class="md-nav__link">
  549. Talks
  550. </a>
  551. </li>
  552. <li class="md-nav__item">
  553. <a href="../eso-demos/" class="md-nav__link">
  554. Demos
  555. </a>
  556. </li>
  557. <li class="md-nav__item">
  558. <a href="../eso-blogs/" class="md-nav__link">
  559. Blogs
  560. </a>
  561. </li>
  562. </ul>
  563. </nav>
  564. </li>
  565. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  566. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_8" type="checkbox" id="__nav_8" checked>
  567. <label class="md-nav__link" for="__nav_8">
  568. References
  569. <span class="md-nav__icon md-icon"></span>
  570. </label>
  571. <nav class="md-nav" aria-label="References" data-md-level="1">
  572. <label class="md-nav__title" for="__nav_8">
  573. <span class="md-nav__icon md-icon"></span>
  574. References
  575. </label>
  576. <ul class="md-nav__list" data-md-scrollfix>
  577. <li class="md-nav__item md-nav__item--active">
  578. <input class="md-nav__toggle md-toggle" data-md-toggle="toc" type="checkbox" id="__toc">
  579. <a href="./" class="md-nav__link md-nav__link--active">
  580. API specification
  581. </a>
  582. </li>
  583. </ul>
  584. </nav>
  585. </li>
  586. <li class="md-nav__item md-nav__item--nested">
  587. <input class="md-nav__toggle md-toggle" data-md-toggle="__nav_9" type="checkbox" id="__nav_9" >
  588. <label class="md-nav__link" for="__nav_9">
  589. Contributing
  590. <span class="md-nav__icon md-icon"></span>
  591. </label>
  592. <nav class="md-nav" aria-label="Contributing" data-md-level="1">
  593. <label class="md-nav__title" for="__nav_9">
  594. <span class="md-nav__icon md-icon"></span>
  595. Contributing
  596. </label>
  597. <ul class="md-nav__list" data-md-scrollfix>
  598. <li class="md-nav__item">
  599. <a href="../contributing-devguide/" class="md-nav__link">
  600. Developer guide
  601. </a>
  602. </li>
  603. <li class="md-nav__item">
  604. <a href="../contributing-process/" class="md-nav__link">
  605. Contributing Process
  606. </a>
  607. </li>
  608. <li class="md-nav__item">
  609. <a href="../contributing-release/" class="md-nav__link">
  610. Release Process
  611. </a>
  612. </li>
  613. <li class="md-nav__item">
  614. <a href="../contributing-coc/" class="md-nav__link">
  615. Code of Conduct
  616. </a>
  617. </li>
  618. </ul>
  619. </nav>
  620. </li>
  621. <li class="md-nav__item">
  622. <a href="../roadmap/" class="md-nav__link">
  623. Roadmap
  624. </a>
  625. </li>
  626. <li class="md-nav__item">
  627. <a href="../faq/" class="md-nav__link">
  628. FAQ
  629. </a>
  630. </li>
  631. <li class="md-nav__item">
  632. <a href="../stability-support/" class="md-nav__link">
  633. Stability and Support
  634. </a>
  635. </li>
  636. <li class="md-nav__item">
  637. <a href="../deprecation-policy/" class="md-nav__link">
  638. Deprecation Policy
  639. </a>
  640. </li>
  641. </ul>
  642. </nav>
  643. </div>
  644. </div>
  645. </div>
  646. <div class="md-content" data-md-component="content">
  647. <article class="md-content__inner md-typeset">
  648. <a href="https://github.com/external-secrets/external-secrets/edit/main/docs/spec.md" title="Edit this page" class="md-content__button md-icon">
  649. <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>
  650. </a>
  651. <h1>API specification</h1>
  652. <p>Packages:</p>
  653. <ul>
  654. <li>
  655. <a href="#external-secrets.io%2fv1beta1">external-secrets.io/v1beta1</a>
  656. </li>
  657. </ul>
  658. <h2 id="external-secrets.io/v1beta1">external-secrets.io/v1beta1</h2>
  659. <p>
  660. <p>Package v1beta1 contains resources for external-secrets</p>
  661. </p>
  662. <p>Resource Types:</p>
  663. <ul></ul>
  664. <h3 id="external-secrets.io/v1beta1.AWSAuth">AWSAuth
  665. </h3>
  666. <p>
  667. (<em>Appears on:</em>
  668. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  669. </p>
  670. <p>
  671. <p>AWSAuth tells the controller how to do authentication with aws.
  672. Only one of secretRef or jwt can be specified.
  673. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  674. </p>
  675. <table>
  676. <thead>
  677. <tr>
  678. <th>Field</th>
  679. <th>Description</th>
  680. </tr>
  681. </thead>
  682. <tbody>
  683. <tr>
  684. <td>
  685. <code>secretRef</code></br>
  686. <em>
  687. <a href="#external-secrets.io/v1beta1.AWSAuthSecretRef">
  688. AWSAuthSecretRef
  689. </a>
  690. </em>
  691. </td>
  692. <td>
  693. <em>(Optional)</em>
  694. </td>
  695. </tr>
  696. <tr>
  697. <td>
  698. <code>jwt</code></br>
  699. <em>
  700. <a href="#external-secrets.io/v1beta1.AWSJWTAuth">
  701. AWSJWTAuth
  702. </a>
  703. </em>
  704. </td>
  705. <td>
  706. <em>(Optional)</em>
  707. </td>
  708. </tr>
  709. </tbody>
  710. </table>
  711. <h3 id="external-secrets.io/v1beta1.AWSAuthSecretRef">AWSAuthSecretRef
  712. </h3>
  713. <p>
  714. (<em>Appears on:</em>
  715. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  716. </p>
  717. <p>
  718. <p>AWSAuthSecretRef holds secret references for AWS credentials
  719. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  720. </p>
  721. <table>
  722. <thead>
  723. <tr>
  724. <th>Field</th>
  725. <th>Description</th>
  726. </tr>
  727. </thead>
  728. <tbody>
  729. <tr>
  730. <td>
  731. <code>accessKeyIDSecretRef</code></br>
  732. <em>
  733. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  734. </em>
  735. </td>
  736. <td>
  737. <p>The AccessKeyID is used for authentication</p>
  738. </td>
  739. </tr>
  740. <tr>
  741. <td>
  742. <code>secretAccessKeySecretRef</code></br>
  743. <em>
  744. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  745. </em>
  746. </td>
  747. <td>
  748. <p>The SecretAccessKey is used for authentication</p>
  749. </td>
  750. </tr>
  751. </tbody>
  752. </table>
  753. <h3 id="external-secrets.io/v1beta1.AWSJWTAuth">AWSJWTAuth
  754. </h3>
  755. <p>
  756. (<em>Appears on:</em>
  757. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  758. </p>
  759. <p>
  760. <p>Authenticate against AWS using service account tokens.</p>
  761. </p>
  762. <table>
  763. <thead>
  764. <tr>
  765. <th>Field</th>
  766. <th>Description</th>
  767. </tr>
  768. </thead>
  769. <tbody>
  770. <tr>
  771. <td>
  772. <code>serviceAccountRef</code></br>
  773. <em>
  774. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  775. </em>
  776. </td>
  777. <td>
  778. </td>
  779. </tr>
  780. </tbody>
  781. </table>
  782. <h3 id="external-secrets.io/v1beta1.AWSProvider">AWSProvider
  783. </h3>
  784. <p>
  785. (<em>Appears on:</em>
  786. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  787. </p>
  788. <p>
  789. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  790. </p>
  791. <table>
  792. <thead>
  793. <tr>
  794. <th>Field</th>
  795. <th>Description</th>
  796. </tr>
  797. </thead>
  798. <tbody>
  799. <tr>
  800. <td>
  801. <code>service</code></br>
  802. <em>
  803. <a href="#external-secrets.io/v1beta1.AWSServiceType">
  804. AWSServiceType
  805. </a>
  806. </em>
  807. </td>
  808. <td>
  809. <p>Service defines which service should be used to fetch the secrets</p>
  810. </td>
  811. </tr>
  812. <tr>
  813. <td>
  814. <code>auth</code></br>
  815. <em>
  816. <a href="#external-secrets.io/v1beta1.AWSAuth">
  817. AWSAuth
  818. </a>
  819. </em>
  820. </td>
  821. <td>
  822. <em>(Optional)</em>
  823. <p>Auth defines the information necessary to authenticate against AWS
  824. if not set aws sdk will infer credentials from your environment
  825. 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>
  826. </td>
  827. </tr>
  828. <tr>
  829. <td>
  830. <code>role</code></br>
  831. <em>
  832. string
  833. </em>
  834. </td>
  835. <td>
  836. <em>(Optional)</em>
  837. <p>Role is a Role ARN which the SecretManager provider will assume</p>
  838. </td>
  839. </tr>
  840. <tr>
  841. <td>
  842. <code>region</code></br>
  843. <em>
  844. string
  845. </em>
  846. </td>
  847. <td>
  848. <p>AWS Region to be used for the provider</p>
  849. </td>
  850. </tr>
  851. </tbody>
  852. </table>
  853. <h3 id="external-secrets.io/v1beta1.AWSServiceType">AWSServiceType
  854. (<code>string</code> alias)</p></h3>
  855. <p>
  856. (<em>Appears on:</em>
  857. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  858. </p>
  859. <p>
  860. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  861. </p>
  862. <table>
  863. <thead>
  864. <tr>
  865. <th>Value</th>
  866. <th>Description</th>
  867. </tr>
  868. </thead>
  869. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  870. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore.
  871. 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>
  872. </td>
  873. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  874. <td><p>AWSServiceSecretsManager is the AWS SecretsManager.
  875. 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>
  876. </td>
  877. </tr></tbody>
  878. </table>
  879. <h3 id="external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth
  880. </h3>
  881. <p>
  882. (<em>Appears on:</em>
  883. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>)
  884. </p>
  885. <p>
  886. </p>
  887. <table>
  888. <thead>
  889. <tr>
  890. <th>Field</th>
  891. <th>Description</th>
  892. </tr>
  893. </thead>
  894. <tbody>
  895. <tr>
  896. <td>
  897. <code>secretRef</code></br>
  898. <em>
  899. <a href="#external-secrets.io/v1beta1.AkeylessAuthSecretRef">
  900. AkeylessAuthSecretRef
  901. </a>
  902. </em>
  903. </td>
  904. <td>
  905. </td>
  906. </tr>
  907. </tbody>
  908. </table>
  909. <h3 id="external-secrets.io/v1beta1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  910. </h3>
  911. <p>
  912. (<em>Appears on:</em>
  913. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  914. </p>
  915. <p>
  916. <p>AkeylessAuthSecretRef
  917. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  918. </p>
  919. <table>
  920. <thead>
  921. <tr>
  922. <th>Field</th>
  923. <th>Description</th>
  924. </tr>
  925. </thead>
  926. <tbody>
  927. <tr>
  928. <td>
  929. <code>accessID</code></br>
  930. <em>
  931. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  932. </em>
  933. </td>
  934. <td>
  935. <p>The SecretAccessID is used for authentication</p>
  936. </td>
  937. </tr>
  938. <tr>
  939. <td>
  940. <code>accessType</code></br>
  941. <em>
  942. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  943. </em>
  944. </td>
  945. <td>
  946. </td>
  947. </tr>
  948. <tr>
  949. <td>
  950. <code>accessTypeParam</code></br>
  951. <em>
  952. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  953. </em>
  954. </td>
  955. <td>
  956. </td>
  957. </tr>
  958. </tbody>
  959. </table>
  960. <h3 id="external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider
  961. </h3>
  962. <p>
  963. (<em>Appears on:</em>
  964. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  965. </p>
  966. <p>
  967. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  968. </p>
  969. <table>
  970. <thead>
  971. <tr>
  972. <th>Field</th>
  973. <th>Description</th>
  974. </tr>
  975. </thead>
  976. <tbody>
  977. <tr>
  978. <td>
  979. <code>akeylessGWApiURL</code></br>
  980. <em>
  981. string
  982. </em>
  983. </td>
  984. <td>
  985. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  986. </td>
  987. </tr>
  988. <tr>
  989. <td>
  990. <code>authSecretRef</code></br>
  991. <em>
  992. <a href="#external-secrets.io/v1beta1.AkeylessAuth">
  993. AkeylessAuth
  994. </a>
  995. </em>
  996. </td>
  997. <td>
  998. <p>Auth configures how the operator authenticates with Akeyless.</p>
  999. </td>
  1000. </tr>
  1001. </tbody>
  1002. </table>
  1003. <h3 id="external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth
  1004. </h3>
  1005. <p>
  1006. (<em>Appears on:</em>
  1007. <a href="#external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider</a>)
  1008. </p>
  1009. <p>
  1010. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1011. </p>
  1012. <table>
  1013. <thead>
  1014. <tr>
  1015. <th>Field</th>
  1016. <th>Description</th>
  1017. </tr>
  1018. </thead>
  1019. <tbody>
  1020. <tr>
  1021. <td>
  1022. <code>secretRef</code></br>
  1023. <em>
  1024. <a href="#external-secrets.io/v1beta1.AlibabaAuthSecretRef">
  1025. AlibabaAuthSecretRef
  1026. </a>
  1027. </em>
  1028. </td>
  1029. <td>
  1030. </td>
  1031. </tr>
  1032. </tbody>
  1033. </table>
  1034. <h3 id="external-secrets.io/v1beta1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1035. </h3>
  1036. <p>
  1037. (<em>Appears on:</em>
  1038. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1039. </p>
  1040. <p>
  1041. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1042. </p>
  1043. <table>
  1044. <thead>
  1045. <tr>
  1046. <th>Field</th>
  1047. <th>Description</th>
  1048. </tr>
  1049. </thead>
  1050. <tbody>
  1051. <tr>
  1052. <td>
  1053. <code>accessKeyIDSecretRef</code></br>
  1054. <em>
  1055. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1056. </em>
  1057. </td>
  1058. <td>
  1059. <p>The AccessKeyID is used for authentication</p>
  1060. </td>
  1061. </tr>
  1062. <tr>
  1063. <td>
  1064. <code>accessKeySecretSecretRef</code></br>
  1065. <em>
  1066. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1067. </em>
  1068. </td>
  1069. <td>
  1070. <p>The AccessKeySecret is used for authentication</p>
  1071. </td>
  1072. </tr>
  1073. </tbody>
  1074. </table>
  1075. <h3 id="external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider
  1076. </h3>
  1077. <p>
  1078. (<em>Appears on:</em>
  1079. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1080. </p>
  1081. <p>
  1082. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1083. </p>
  1084. <table>
  1085. <thead>
  1086. <tr>
  1087. <th>Field</th>
  1088. <th>Description</th>
  1089. </tr>
  1090. </thead>
  1091. <tbody>
  1092. <tr>
  1093. <td>
  1094. <code>auth</code></br>
  1095. <em>
  1096. <a href="#external-secrets.io/v1beta1.AlibabaAuth">
  1097. AlibabaAuth
  1098. </a>
  1099. </em>
  1100. </td>
  1101. <td>
  1102. </td>
  1103. </tr>
  1104. <tr>
  1105. <td>
  1106. <code>endpoint</code></br>
  1107. <em>
  1108. string
  1109. </em>
  1110. </td>
  1111. <td>
  1112. <em>(Optional)</em>
  1113. </td>
  1114. </tr>
  1115. <tr>
  1116. <td>
  1117. <code>regionID</code></br>
  1118. <em>
  1119. string
  1120. </em>
  1121. </td>
  1122. <td>
  1123. <p>Alibaba Region to be used for the provider</p>
  1124. </td>
  1125. </tr>
  1126. </tbody>
  1127. </table>
  1128. <h3 id="external-secrets.io/v1beta1.AzureAuthType">AzureAuthType
  1129. (<code>string</code> alias)</p></h3>
  1130. <p>
  1131. (<em>Appears on:</em>
  1132. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1133. </p>
  1134. <p>
  1135. <p>AuthType describes how to authenticate to the Azure Keyvault
  1136. Only one of the following auth types may be specified.
  1137. If none of the following auth type is specified, the default one
  1138. is ServicePrincipal.</p>
  1139. </p>
  1140. <table>
  1141. <thead>
  1142. <tr>
  1143. <th>Value</th>
  1144. <th>Description</th>
  1145. </tr>
  1146. </thead>
  1147. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  1148. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  1149. </td>
  1150. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  1151. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  1152. </td>
  1153. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  1154. <td><p>Using Workload Identity service accounts to authenticate.</p>
  1155. </td>
  1156. </tr></tbody>
  1157. </table>
  1158. <h3 id="external-secrets.io/v1beta1.AzureEnvironmentType">AzureEnvironmentType
  1159. (<code>string</code> alias)</p></h3>
  1160. <p>
  1161. (<em>Appears on:</em>
  1162. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1163. </p>
  1164. <p>
  1165. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  1166. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1167. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1168. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1169. </p>
  1170. <table>
  1171. <thead>
  1172. <tr>
  1173. <th>Value</th>
  1174. <th>Description</th>
  1175. </tr>
  1176. </thead>
  1177. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  1178. <td></td>
  1179. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  1180. <td></td>
  1181. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  1182. <td></td>
  1183. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  1184. <td></td>
  1185. </tr></tbody>
  1186. </table>
  1187. <h3 id="external-secrets.io/v1beta1.AzureKVAuth">AzureKVAuth
  1188. </h3>
  1189. <p>
  1190. (<em>Appears on:</em>
  1191. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1192. </p>
  1193. <p>
  1194. <p>Configuration used to authenticate with Azure.</p>
  1195. </p>
  1196. <table>
  1197. <thead>
  1198. <tr>
  1199. <th>Field</th>
  1200. <th>Description</th>
  1201. </tr>
  1202. </thead>
  1203. <tbody>
  1204. <tr>
  1205. <td>
  1206. <code>clientId</code></br>
  1207. <em>
  1208. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1209. </em>
  1210. </td>
  1211. <td>
  1212. <em>(Optional)</em>
  1213. <p>The Azure clientId of the service principle used for authentication.</p>
  1214. </td>
  1215. </tr>
  1216. <tr>
  1217. <td>
  1218. <code>clientSecret</code></br>
  1219. <em>
  1220. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1221. </em>
  1222. </td>
  1223. <td>
  1224. <em>(Optional)</em>
  1225. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  1226. </td>
  1227. </tr>
  1228. </tbody>
  1229. </table>
  1230. <h3 id="external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider
  1231. </h3>
  1232. <p>
  1233. (<em>Appears on:</em>
  1234. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1235. </p>
  1236. <p>
  1237. <p>Configures an store to sync secrets using Azure KV.</p>
  1238. </p>
  1239. <table>
  1240. <thead>
  1241. <tr>
  1242. <th>Field</th>
  1243. <th>Description</th>
  1244. </tr>
  1245. </thead>
  1246. <tbody>
  1247. <tr>
  1248. <td>
  1249. <code>authType</code></br>
  1250. <em>
  1251. <a href="#external-secrets.io/v1beta1.AzureAuthType">
  1252. AzureAuthType
  1253. </a>
  1254. </em>
  1255. </td>
  1256. <td>
  1257. <em>(Optional)</em>
  1258. <p>Auth type defines how to authenticate to the keyvault service.
  1259. Valid values are:
  1260. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  1261. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  1262. </td>
  1263. </tr>
  1264. <tr>
  1265. <td>
  1266. <code>vaultUrl</code></br>
  1267. <em>
  1268. string
  1269. </em>
  1270. </td>
  1271. <td>
  1272. <p>Vault Url from which the secrets to be fetched from.</p>
  1273. </td>
  1274. </tr>
  1275. <tr>
  1276. <td>
  1277. <code>tenantId</code></br>
  1278. <em>
  1279. string
  1280. </em>
  1281. </td>
  1282. <td>
  1283. <em>(Optional)</em>
  1284. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.</p>
  1285. </td>
  1286. </tr>
  1287. <tr>
  1288. <td>
  1289. <code>environmentType</code></br>
  1290. <em>
  1291. <a href="#external-secrets.io/v1beta1.AzureEnvironmentType">
  1292. AzureEnvironmentType
  1293. </a>
  1294. </em>
  1295. </td>
  1296. <td>
  1297. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  1298. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1299. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1300. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1301. </td>
  1302. </tr>
  1303. <tr>
  1304. <td>
  1305. <code>authSecretRef</code></br>
  1306. <em>
  1307. <a href="#external-secrets.io/v1beta1.AzureKVAuth">
  1308. AzureKVAuth
  1309. </a>
  1310. </em>
  1311. </td>
  1312. <td>
  1313. <em>(Optional)</em>
  1314. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.</p>
  1315. </td>
  1316. </tr>
  1317. <tr>
  1318. <td>
  1319. <code>serviceAccountRef</code></br>
  1320. <em>
  1321. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  1322. </em>
  1323. </td>
  1324. <td>
  1325. <em>(Optional)</em>
  1326. <p>ServiceAccountRef specified the service account
  1327. that should be used when authenticating with WorkloadIdentity.</p>
  1328. </td>
  1329. </tr>
  1330. <tr>
  1331. <td>
  1332. <code>identityId</code></br>
  1333. <em>
  1334. string
  1335. </em>
  1336. </td>
  1337. <td>
  1338. <em>(Optional)</em>
  1339. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  1340. </td>
  1341. </tr>
  1342. </tbody>
  1343. </table>
  1344. <h3 id="external-secrets.io/v1beta1.CAProvider">CAProvider
  1345. </h3>
  1346. <p>
  1347. (<em>Appears on:</em>
  1348. <a href="#external-secrets.io/v1beta1.KubernetesServer">KubernetesServer</a>,
  1349. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  1350. </p>
  1351. <p>
  1352. <p>Used to provide custom certificate authority (CA) certificates
  1353. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  1354. that contains a PEM-encoded certificate.</p>
  1355. </p>
  1356. <table>
  1357. <thead>
  1358. <tr>
  1359. <th>Field</th>
  1360. <th>Description</th>
  1361. </tr>
  1362. </thead>
  1363. <tbody>
  1364. <tr>
  1365. <td>
  1366. <code>type</code></br>
  1367. <em>
  1368. <a href="#external-secrets.io/v1beta1.CAProviderType">
  1369. CAProviderType
  1370. </a>
  1371. </em>
  1372. </td>
  1373. <td>
  1374. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  1375. </td>
  1376. </tr>
  1377. <tr>
  1378. <td>
  1379. <code>name</code></br>
  1380. <em>
  1381. string
  1382. </em>
  1383. </td>
  1384. <td>
  1385. <p>The name of the object located at the provider type.</p>
  1386. </td>
  1387. </tr>
  1388. <tr>
  1389. <td>
  1390. <code>key</code></br>
  1391. <em>
  1392. string
  1393. </em>
  1394. </td>
  1395. <td>
  1396. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  1397. </td>
  1398. </tr>
  1399. <tr>
  1400. <td>
  1401. <code>namespace</code></br>
  1402. <em>
  1403. string
  1404. </em>
  1405. </td>
  1406. <td>
  1407. <em>(Optional)</em>
  1408. <p>The namespace the Provider type is in.
  1409. Can only be defined when used in a ClusterSecretStore.</p>
  1410. </td>
  1411. </tr>
  1412. </tbody>
  1413. </table>
  1414. <h3 id="external-secrets.io/v1beta1.CAProviderType">CAProviderType
  1415. (<code>string</code> alias)</p></h3>
  1416. <p>
  1417. (<em>Appears on:</em>
  1418. <a href="#external-secrets.io/v1beta1.CAProvider">CAProvider</a>)
  1419. </p>
  1420. <p>
  1421. </p>
  1422. <table>
  1423. <thead>
  1424. <tr>
  1425. <th>Value</th>
  1426. <th>Description</th>
  1427. </tr>
  1428. </thead>
  1429. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  1430. <td></td>
  1431. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  1432. <td></td>
  1433. </tr></tbody>
  1434. </table>
  1435. <h3 id="external-secrets.io/v1beta1.CertAuth">CertAuth
  1436. </h3>
  1437. <p>
  1438. (<em>Appears on:</em>
  1439. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  1440. </p>
  1441. <p>
  1442. </p>
  1443. <table>
  1444. <thead>
  1445. <tr>
  1446. <th>Field</th>
  1447. <th>Description</th>
  1448. </tr>
  1449. </thead>
  1450. <tbody>
  1451. <tr>
  1452. <td>
  1453. <code>clientCert</code></br>
  1454. <em>
  1455. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1456. </em>
  1457. </td>
  1458. <td>
  1459. </td>
  1460. </tr>
  1461. <tr>
  1462. <td>
  1463. <code>clientKey</code></br>
  1464. <em>
  1465. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1466. </em>
  1467. </td>
  1468. <td>
  1469. </td>
  1470. </tr>
  1471. </tbody>
  1472. </table>
  1473. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret
  1474. </h3>
  1475. <p>
  1476. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  1477. </p>
  1478. <table>
  1479. <thead>
  1480. <tr>
  1481. <th>Field</th>
  1482. <th>Description</th>
  1483. </tr>
  1484. </thead>
  1485. <tbody>
  1486. <tr>
  1487. <td>
  1488. <code>metadata</code></br>
  1489. <em>
  1490. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  1491. Kubernetes meta/v1.ObjectMeta
  1492. </a>
  1493. </em>
  1494. </td>
  1495. <td>
  1496. Refer to the Kubernetes API documentation for the fields of the
  1497. <code>metadata</code> field.
  1498. </td>
  1499. </tr>
  1500. <tr>
  1501. <td>
  1502. <code>spec</code></br>
  1503. <em>
  1504. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">
  1505. ClusterExternalSecretSpec
  1506. </a>
  1507. </em>
  1508. </td>
  1509. <td>
  1510. <br/>
  1511. <br/>
  1512. <table>
  1513. <tr>
  1514. <td>
  1515. <code>externalSecretSpec</code></br>
  1516. <em>
  1517. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  1518. ExternalSecretSpec
  1519. </a>
  1520. </em>
  1521. </td>
  1522. <td>
  1523. <p>The spec for the ExternalSecrets to be created</p>
  1524. </td>
  1525. </tr>
  1526. <tr>
  1527. <td>
  1528. <code>externalSecretName</code></br>
  1529. <em>
  1530. string
  1531. </em>
  1532. </td>
  1533. <td>
  1534. <em>(Optional)</em>
  1535. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  1536. </td>
  1537. </tr>
  1538. <tr>
  1539. <td>
  1540. <code>namespaceSelector</code></br>
  1541. <em>
  1542. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#labelselector-v1-meta">
  1543. Kubernetes meta/v1.LabelSelector
  1544. </a>
  1545. </em>
  1546. </td>
  1547. <td>
  1548. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.</p>
  1549. </td>
  1550. </tr>
  1551. <tr>
  1552. <td>
  1553. <code>refreshTime</code></br>
  1554. <em>
  1555. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  1556. Kubernetes meta/v1.Duration
  1557. </a>
  1558. </em>
  1559. </td>
  1560. <td>
  1561. <p>The time in which the controller should reconcile it&rsquo;s objects and recheck namespaces for labels.</p>
  1562. </td>
  1563. </tr>
  1564. </table>
  1565. </td>
  1566. </tr>
  1567. <tr>
  1568. <td>
  1569. <code>status</code></br>
  1570. <em>
  1571. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">
  1572. ClusterExternalSecretStatus
  1573. </a>
  1574. </em>
  1575. </td>
  1576. <td>
  1577. </td>
  1578. </tr>
  1579. </tbody>
  1580. </table>
  1581. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  1582. (<code>string</code> alias)</p></h3>
  1583. <p>
  1584. (<em>Appears on:</em>
  1585. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  1586. </p>
  1587. <p>
  1588. </p>
  1589. <table>
  1590. <thead>
  1591. <tr>
  1592. <th>Value</th>
  1593. <th>Description</th>
  1594. </tr>
  1595. </thead>
  1596. <tbody><tr><td><p>&#34;NotReady&#34;</p></td>
  1597. <td></td>
  1598. </tr><tr><td><p>&#34;PartiallyReady&#34;</p></td>
  1599. <td></td>
  1600. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  1601. <td></td>
  1602. </tr></tbody>
  1603. </table>
  1604. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  1605. </h3>
  1606. <p>
  1607. (<em>Appears on:</em>
  1608. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  1609. </p>
  1610. <p>
  1611. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  1612. </p>
  1613. <table>
  1614. <thead>
  1615. <tr>
  1616. <th>Field</th>
  1617. <th>Description</th>
  1618. </tr>
  1619. </thead>
  1620. <tbody>
  1621. <tr>
  1622. <td>
  1623. <code>namespace</code></br>
  1624. <em>
  1625. string
  1626. </em>
  1627. </td>
  1628. <td>
  1629. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  1630. </td>
  1631. </tr>
  1632. <tr>
  1633. <td>
  1634. <code>reason</code></br>
  1635. <em>
  1636. string
  1637. </em>
  1638. </td>
  1639. <td>
  1640. <em>(Optional)</em>
  1641. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  1642. </td>
  1643. </tr>
  1644. </tbody>
  1645. </table>
  1646. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  1647. </h3>
  1648. <p>
  1649. (<em>Appears on:</em>
  1650. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  1651. </p>
  1652. <p>
  1653. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  1654. </p>
  1655. <table>
  1656. <thead>
  1657. <tr>
  1658. <th>Field</th>
  1659. <th>Description</th>
  1660. </tr>
  1661. </thead>
  1662. <tbody>
  1663. <tr>
  1664. <td>
  1665. <code>externalSecretSpec</code></br>
  1666. <em>
  1667. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  1668. ExternalSecretSpec
  1669. </a>
  1670. </em>
  1671. </td>
  1672. <td>
  1673. <p>The spec for the ExternalSecrets to be created</p>
  1674. </td>
  1675. </tr>
  1676. <tr>
  1677. <td>
  1678. <code>externalSecretName</code></br>
  1679. <em>
  1680. string
  1681. </em>
  1682. </td>
  1683. <td>
  1684. <em>(Optional)</em>
  1685. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  1686. </td>
  1687. </tr>
  1688. <tr>
  1689. <td>
  1690. <code>namespaceSelector</code></br>
  1691. <em>
  1692. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#labelselector-v1-meta">
  1693. Kubernetes meta/v1.LabelSelector
  1694. </a>
  1695. </em>
  1696. </td>
  1697. <td>
  1698. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.</p>
  1699. </td>
  1700. </tr>
  1701. <tr>
  1702. <td>
  1703. <code>refreshTime</code></br>
  1704. <em>
  1705. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  1706. Kubernetes meta/v1.Duration
  1707. </a>
  1708. </em>
  1709. </td>
  1710. <td>
  1711. <p>The time in which the controller should reconcile it&rsquo;s objects and recheck namespaces for labels.</p>
  1712. </td>
  1713. </tr>
  1714. </tbody>
  1715. </table>
  1716. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  1717. </h3>
  1718. <p>
  1719. (<em>Appears on:</em>
  1720. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  1721. </p>
  1722. <p>
  1723. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  1724. </p>
  1725. <table>
  1726. <thead>
  1727. <tr>
  1728. <th>Field</th>
  1729. <th>Description</th>
  1730. </tr>
  1731. </thead>
  1732. <tbody>
  1733. <tr>
  1734. <td>
  1735. <code>failedNamespaces</code></br>
  1736. <em>
  1737. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">
  1738. []ClusterExternalSecretNamespaceFailure
  1739. </a>
  1740. </em>
  1741. </td>
  1742. <td>
  1743. <em>(Optional)</em>
  1744. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  1745. </td>
  1746. </tr>
  1747. <tr>
  1748. <td>
  1749. <code>provisionedNamespaces</code></br>
  1750. <em>
  1751. []string
  1752. </em>
  1753. </td>
  1754. <td>
  1755. <em>(Optional)</em>
  1756. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  1757. </td>
  1758. </tr>
  1759. <tr>
  1760. <td>
  1761. <code>conditions</code></br>
  1762. <em>
  1763. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">
  1764. []ClusterExternalSecretStatusCondition
  1765. </a>
  1766. </em>
  1767. </td>
  1768. <td>
  1769. <em>(Optional)</em>
  1770. </td>
  1771. </tr>
  1772. </tbody>
  1773. </table>
  1774. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  1775. </h3>
  1776. <p>
  1777. (<em>Appears on:</em>
  1778. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  1779. </p>
  1780. <p>
  1781. </p>
  1782. <table>
  1783. <thead>
  1784. <tr>
  1785. <th>Field</th>
  1786. <th>Description</th>
  1787. </tr>
  1788. </thead>
  1789. <tbody>
  1790. <tr>
  1791. <td>
  1792. <code>type</code></br>
  1793. <em>
  1794. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretConditionType">
  1795. ClusterExternalSecretConditionType
  1796. </a>
  1797. </em>
  1798. </td>
  1799. <td>
  1800. </td>
  1801. </tr>
  1802. <tr>
  1803. <td>
  1804. <code>status</code></br>
  1805. <em>
  1806. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  1807. Kubernetes core/v1.ConditionStatus
  1808. </a>
  1809. </em>
  1810. </td>
  1811. <td>
  1812. </td>
  1813. </tr>
  1814. <tr>
  1815. <td>
  1816. <code>message</code></br>
  1817. <em>
  1818. string
  1819. </em>
  1820. </td>
  1821. <td>
  1822. <em>(Optional)</em>
  1823. </td>
  1824. </tr>
  1825. </tbody>
  1826. </table>
  1827. <h3 id="external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore
  1828. </h3>
  1829. <p>
  1830. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  1831. </p>
  1832. <table>
  1833. <thead>
  1834. <tr>
  1835. <th>Field</th>
  1836. <th>Description</th>
  1837. </tr>
  1838. </thead>
  1839. <tbody>
  1840. <tr>
  1841. <td>
  1842. <code>metadata</code></br>
  1843. <em>
  1844. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  1845. Kubernetes meta/v1.ObjectMeta
  1846. </a>
  1847. </em>
  1848. </td>
  1849. <td>
  1850. Refer to the Kubernetes API documentation for the fields of the
  1851. <code>metadata</code> field.
  1852. </td>
  1853. </tr>
  1854. <tr>
  1855. <td>
  1856. <code>spec</code></br>
  1857. <em>
  1858. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  1859. SecretStoreSpec
  1860. </a>
  1861. </em>
  1862. </td>
  1863. <td>
  1864. <br/>
  1865. <br/>
  1866. <table>
  1867. <tr>
  1868. <td>
  1869. <code>controller</code></br>
  1870. <em>
  1871. string
  1872. </em>
  1873. </td>
  1874. <td>
  1875. <em>(Optional)</em>
  1876. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  1877. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  1878. </td>
  1879. </tr>
  1880. <tr>
  1881. <td>
  1882. <code>provider</code></br>
  1883. <em>
  1884. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  1885. SecretStoreProvider
  1886. </a>
  1887. </em>
  1888. </td>
  1889. <td>
  1890. <p>Used to configure the provider. Only one provider may be set</p>
  1891. </td>
  1892. </tr>
  1893. <tr>
  1894. <td>
  1895. <code>retrySettings</code></br>
  1896. <em>
  1897. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  1898. SecretStoreRetrySettings
  1899. </a>
  1900. </em>
  1901. </td>
  1902. <td>
  1903. <em>(Optional)</em>
  1904. <p>Used to configure http retries if failed</p>
  1905. </td>
  1906. </tr>
  1907. <tr>
  1908. <td>
  1909. <code>refreshInterval</code></br>
  1910. <em>
  1911. int
  1912. </em>
  1913. </td>
  1914. <td>
  1915. <em>(Optional)</em>
  1916. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  1917. </td>
  1918. </tr>
  1919. </table>
  1920. </td>
  1921. </tr>
  1922. <tr>
  1923. <td>
  1924. <code>status</code></br>
  1925. <em>
  1926. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  1927. SecretStoreStatus
  1928. </a>
  1929. </em>
  1930. </td>
  1931. <td>
  1932. </td>
  1933. </tr>
  1934. </tbody>
  1935. </table>
  1936. <h3 id="external-secrets.io/v1beta1.ExternalSecret">ExternalSecret
  1937. </h3>
  1938. <p>
  1939. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  1940. </p>
  1941. <table>
  1942. <thead>
  1943. <tr>
  1944. <th>Field</th>
  1945. <th>Description</th>
  1946. </tr>
  1947. </thead>
  1948. <tbody>
  1949. <tr>
  1950. <td>
  1951. <code>metadata</code></br>
  1952. <em>
  1953. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  1954. Kubernetes meta/v1.ObjectMeta
  1955. </a>
  1956. </em>
  1957. </td>
  1958. <td>
  1959. Refer to the Kubernetes API documentation for the fields of the
  1960. <code>metadata</code> field.
  1961. </td>
  1962. </tr>
  1963. <tr>
  1964. <td>
  1965. <code>spec</code></br>
  1966. <em>
  1967. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  1968. ExternalSecretSpec
  1969. </a>
  1970. </em>
  1971. </td>
  1972. <td>
  1973. <br/>
  1974. <br/>
  1975. <table>
  1976. <tr>
  1977. <td>
  1978. <code>secretStoreRef</code></br>
  1979. <em>
  1980. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  1981. SecretStoreRef
  1982. </a>
  1983. </em>
  1984. </td>
  1985. <td>
  1986. </td>
  1987. </tr>
  1988. <tr>
  1989. <td>
  1990. <code>target</code></br>
  1991. <em>
  1992. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  1993. ExternalSecretTarget
  1994. </a>
  1995. </em>
  1996. </td>
  1997. <td>
  1998. <em>(Optional)</em>
  1999. </td>
  2000. </tr>
  2001. <tr>
  2002. <td>
  2003. <code>refreshInterval</code></br>
  2004. <em>
  2005. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  2006. Kubernetes meta/v1.Duration
  2007. </a>
  2008. </em>
  2009. </td>
  2010. <td>
  2011. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  2012. 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;
  2013. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  2014. </td>
  2015. </tr>
  2016. <tr>
  2017. <td>
  2018. <code>data</code></br>
  2019. <em>
  2020. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  2021. []ExternalSecretData
  2022. </a>
  2023. </em>
  2024. </td>
  2025. <td>
  2026. <em>(Optional)</em>
  2027. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  2028. </td>
  2029. </tr>
  2030. <tr>
  2031. <td>
  2032. <code>dataFrom</code></br>
  2033. <em>
  2034. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  2035. []ExternalSecretDataFromRemoteRef
  2036. </a>
  2037. </em>
  2038. </td>
  2039. <td>
  2040. <em>(Optional)</em>
  2041. <p>DataFrom is used to fetch all properties from a specific Provider data
  2042. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  2043. </td>
  2044. </tr>
  2045. </table>
  2046. </td>
  2047. </tr>
  2048. <tr>
  2049. <td>
  2050. <code>status</code></br>
  2051. <em>
  2052. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">
  2053. ExternalSecretStatus
  2054. </a>
  2055. </em>
  2056. </td>
  2057. <td>
  2058. </td>
  2059. </tr>
  2060. </tbody>
  2061. </table>
  2062. <h3 id="external-secrets.io/v1beta1.ExternalSecretConditionType">ExternalSecretConditionType
  2063. (<code>string</code> alias)</p></h3>
  2064. <p>
  2065. (<em>Appears on:</em>
  2066. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  2067. </p>
  2068. <p>
  2069. </p>
  2070. <table>
  2071. <thead>
  2072. <tr>
  2073. <th>Value</th>
  2074. <th>Description</th>
  2075. </tr>
  2076. </thead>
  2077. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  2078. <td></td>
  2079. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  2080. <td></td>
  2081. </tr></tbody>
  2082. </table>
  2083. <h3 id="external-secrets.io/v1beta1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  2084. (<code>string</code> alias)</p></h3>
  2085. <p>
  2086. (<em>Appears on:</em>
  2087. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  2088. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  2089. </p>
  2090. <p>
  2091. </p>
  2092. <table>
  2093. <thead>
  2094. <tr>
  2095. <th>Value</th>
  2096. <th>Description</th>
  2097. </tr>
  2098. </thead>
  2099. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  2100. <td></td>
  2101. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  2102. <td></td>
  2103. </tr></tbody>
  2104. </table>
  2105. <h3 id="external-secrets.io/v1beta1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  2106. (<code>string</code> alias)</p></h3>
  2107. <p>
  2108. (<em>Appears on:</em>
  2109. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  2110. </p>
  2111. <p>
  2112. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  2113. </p>
  2114. <table>
  2115. <thead>
  2116. <tr>
  2117. <th>Value</th>
  2118. <th>Description</th>
  2119. </tr>
  2120. </thead>
  2121. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  2122. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  2123. </td>
  2124. </tr><tr><td><p>&#34;None&#34;</p></td>
  2125. <td><p>None does not create a Secret (future use with injector).</p>
  2126. </td>
  2127. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  2128. <td><p>Orphan creates the Secret and does not set the ownerReference.
  2129. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  2130. </td>
  2131. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  2132. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  2133. </td>
  2134. </tr></tbody>
  2135. </table>
  2136. <h3 id="external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData
  2137. </h3>
  2138. <p>
  2139. (<em>Appears on:</em>
  2140. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  2141. </p>
  2142. <p>
  2143. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  2144. </p>
  2145. <table>
  2146. <thead>
  2147. <tr>
  2148. <th>Field</th>
  2149. <th>Description</th>
  2150. </tr>
  2151. </thead>
  2152. <tbody>
  2153. <tr>
  2154. <td>
  2155. <code>secretKey</code></br>
  2156. <em>
  2157. string
  2158. </em>
  2159. </td>
  2160. <td>
  2161. </td>
  2162. </tr>
  2163. <tr>
  2164. <td>
  2165. <code>remoteRef</code></br>
  2166. <em>
  2167. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  2168. ExternalSecretDataRemoteRef
  2169. </a>
  2170. </em>
  2171. </td>
  2172. <td>
  2173. </td>
  2174. </tr>
  2175. </tbody>
  2176. </table>
  2177. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  2178. </h3>
  2179. <p>
  2180. (<em>Appears on:</em>
  2181. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  2182. </p>
  2183. <p>
  2184. </p>
  2185. <table>
  2186. <thead>
  2187. <tr>
  2188. <th>Field</th>
  2189. <th>Description</th>
  2190. </tr>
  2191. </thead>
  2192. <tbody>
  2193. <tr>
  2194. <td>
  2195. <code>extract</code></br>
  2196. <em>
  2197. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  2198. ExternalSecretDataRemoteRef
  2199. </a>
  2200. </em>
  2201. </td>
  2202. <td>
  2203. <em>(Optional)</em>
  2204. <p>Used to extract multiple key/value pairs from one secret</p>
  2205. </td>
  2206. </tr>
  2207. <tr>
  2208. <td>
  2209. <code>find</code></br>
  2210. <em>
  2211. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">
  2212. ExternalSecretFind
  2213. </a>
  2214. </em>
  2215. </td>
  2216. <td>
  2217. <em>(Optional)</em>
  2218. <p>Used to find secrets based on tags or regular expressions</p>
  2219. </td>
  2220. </tr>
  2221. <tr>
  2222. <td>
  2223. <code>rewrite</code></br>
  2224. <em>
  2225. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">
  2226. []ExternalSecretRewrite
  2227. </a>
  2228. </em>
  2229. </td>
  2230. <td>
  2231. <em>(Optional)</em>
  2232. <p>Used to rewrite secret Keys after getting them from the secret Provider
  2233. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  2234. </td>
  2235. </tr>
  2236. </tbody>
  2237. </table>
  2238. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  2239. </h3>
  2240. <p>
  2241. (<em>Appears on:</em>
  2242. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>,
  2243. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2244. </p>
  2245. <p>
  2246. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  2247. </p>
  2248. <table>
  2249. <thead>
  2250. <tr>
  2251. <th>Field</th>
  2252. <th>Description</th>
  2253. </tr>
  2254. </thead>
  2255. <tbody>
  2256. <tr>
  2257. <td>
  2258. <code>key</code></br>
  2259. <em>
  2260. string
  2261. </em>
  2262. </td>
  2263. <td>
  2264. <p>Key is the key used in the Provider, mandatory</p>
  2265. </td>
  2266. </tr>
  2267. <tr>
  2268. <td>
  2269. <code>metadataPolicy</code></br>
  2270. <em>
  2271. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">
  2272. ExternalSecretMetadataPolicy
  2273. </a>
  2274. </em>
  2275. </td>
  2276. <td>
  2277. <em>(Optional)</em>
  2278. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  2279. </td>
  2280. </tr>
  2281. <tr>
  2282. <td>
  2283. <code>property</code></br>
  2284. <em>
  2285. string
  2286. </em>
  2287. </td>
  2288. <td>
  2289. <em>(Optional)</em>
  2290. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  2291. </td>
  2292. </tr>
  2293. <tr>
  2294. <td>
  2295. <code>version</code></br>
  2296. <em>
  2297. string
  2298. </em>
  2299. </td>
  2300. <td>
  2301. <em>(Optional)</em>
  2302. <p>Used to select a specific version of the Provider value, if supported</p>
  2303. </td>
  2304. </tr>
  2305. <tr>
  2306. <td>
  2307. <code>conversionStrategy</code></br>
  2308. <em>
  2309. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  2310. ExternalSecretConversionStrategy
  2311. </a>
  2312. </em>
  2313. </td>
  2314. <td>
  2315. <em>(Optional)</em>
  2316. <p>Used to define a conversion Strategy</p>
  2317. </td>
  2318. </tr>
  2319. <tr>
  2320. <td>
  2321. <code>decodingStrategy</code></br>
  2322. <em>
  2323. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  2324. ExternalSecretDecodingStrategy
  2325. </a>
  2326. </em>
  2327. </td>
  2328. <td>
  2329. <em>(Optional)</em>
  2330. <p>Used to define a decoding Strategy</p>
  2331. </td>
  2332. </tr>
  2333. </tbody>
  2334. </table>
  2335. <h3 id="external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  2336. (<code>string</code> alias)</p></h3>
  2337. <p>
  2338. (<em>Appears on:</em>
  2339. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  2340. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  2341. </p>
  2342. <p>
  2343. </p>
  2344. <table>
  2345. <thead>
  2346. <tr>
  2347. <th>Value</th>
  2348. <th>Description</th>
  2349. </tr>
  2350. </thead>
  2351. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  2352. <td></td>
  2353. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  2354. <td></td>
  2355. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  2356. <td></td>
  2357. </tr><tr><td><p>&#34;None&#34;</p></td>
  2358. <td></td>
  2359. </tr></tbody>
  2360. </table>
  2361. <h3 id="external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  2362. (<code>string</code> alias)</p></h3>
  2363. <p>
  2364. (<em>Appears on:</em>
  2365. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  2366. </p>
  2367. <p>
  2368. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  2369. </p>
  2370. <table>
  2371. <thead>
  2372. <tr>
  2373. <th>Value</th>
  2374. <th>Description</th>
  2375. </tr>
  2376. </thead>
  2377. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  2378. <td><p>Delete deletes the secret if all provider secrets are deleted.
  2379. If a secret gets deleted on the provider side and is not accessible
  2380. anymore this is not considered an error and the ExternalSecret
  2381. does not go into SecretSyncedError status.</p>
  2382. </td>
  2383. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  2384. <td><p>Merge removes keys in the secret, but not the secret itself.
  2385. If a secret gets deleted on the provider side and is not accessible
  2386. anymore this is not considered an error and the ExternalSecret
  2387. does not go into SecretSyncedError status.</p>
  2388. </td>
  2389. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  2390. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  2391. If a provider secret does not exist the ExternalSecret gets into the
  2392. SecretSyncedError status.</p>
  2393. </td>
  2394. </tr></tbody>
  2395. </table>
  2396. <h3 id="external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind
  2397. </h3>
  2398. <p>
  2399. (<em>Appears on:</em>
  2400. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2401. </p>
  2402. <p>
  2403. </p>
  2404. <table>
  2405. <thead>
  2406. <tr>
  2407. <th>Field</th>
  2408. <th>Description</th>
  2409. </tr>
  2410. </thead>
  2411. <tbody>
  2412. <tr>
  2413. <td>
  2414. <code>path</code></br>
  2415. <em>
  2416. string
  2417. </em>
  2418. </td>
  2419. <td>
  2420. <em>(Optional)</em>
  2421. <p>A root path to start the find operations.</p>
  2422. </td>
  2423. </tr>
  2424. <tr>
  2425. <td>
  2426. <code>name</code></br>
  2427. <em>
  2428. <a href="#external-secrets.io/v1beta1.FindName">
  2429. FindName
  2430. </a>
  2431. </em>
  2432. </td>
  2433. <td>
  2434. <em>(Optional)</em>
  2435. <p>Finds secrets based on the name.</p>
  2436. </td>
  2437. </tr>
  2438. <tr>
  2439. <td>
  2440. <code>tags</code></br>
  2441. <em>
  2442. map[string]string
  2443. </em>
  2444. </td>
  2445. <td>
  2446. <em>(Optional)</em>
  2447. <p>Find secrets based on tags.</p>
  2448. </td>
  2449. </tr>
  2450. <tr>
  2451. <td>
  2452. <code>conversionStrategy</code></br>
  2453. <em>
  2454. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  2455. ExternalSecretConversionStrategy
  2456. </a>
  2457. </em>
  2458. </td>
  2459. <td>
  2460. <em>(Optional)</em>
  2461. <p>Used to define a conversion Strategy</p>
  2462. </td>
  2463. </tr>
  2464. <tr>
  2465. <td>
  2466. <code>decodingStrategy</code></br>
  2467. <em>
  2468. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  2469. ExternalSecretDecodingStrategy
  2470. </a>
  2471. </em>
  2472. </td>
  2473. <td>
  2474. <em>(Optional)</em>
  2475. <p>Used to define a decoding Strategy</p>
  2476. </td>
  2477. </tr>
  2478. </tbody>
  2479. </table>
  2480. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  2481. (<code>string</code> alias)</p></h3>
  2482. <p>
  2483. (<em>Appears on:</em>
  2484. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  2485. </p>
  2486. <p>
  2487. </p>
  2488. <table>
  2489. <thead>
  2490. <tr>
  2491. <th>Value</th>
  2492. <th>Description</th>
  2493. </tr>
  2494. </thead>
  2495. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  2496. <td></td>
  2497. </tr><tr><td><p>&#34;None&#34;</p></td>
  2498. <td></td>
  2499. </tr></tbody>
  2500. </table>
  2501. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite
  2502. </h3>
  2503. <p>
  2504. (<em>Appears on:</em>
  2505. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2506. </p>
  2507. <p>
  2508. </p>
  2509. <table>
  2510. <thead>
  2511. <tr>
  2512. <th>Field</th>
  2513. <th>Description</th>
  2514. </tr>
  2515. </thead>
  2516. <tbody>
  2517. <tr>
  2518. <td>
  2519. <code>regexp</code></br>
  2520. <em>
  2521. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">
  2522. ExternalSecretRewriteRegexp
  2523. </a>
  2524. </em>
  2525. </td>
  2526. <td>
  2527. <em>(Optional)</em>
  2528. <p>Used to rewrite with regular expressions.
  2529. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  2530. </td>
  2531. </tr>
  2532. </tbody>
  2533. </table>
  2534. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  2535. </h3>
  2536. <p>
  2537. (<em>Appears on:</em>
  2538. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  2539. </p>
  2540. <p>
  2541. </p>
  2542. <table>
  2543. <thead>
  2544. <tr>
  2545. <th>Field</th>
  2546. <th>Description</th>
  2547. </tr>
  2548. </thead>
  2549. <tbody>
  2550. <tr>
  2551. <td>
  2552. <code>source</code></br>
  2553. <em>
  2554. string
  2555. </em>
  2556. </td>
  2557. <td>
  2558. <p>Used to define the regular expression of a re.Compiler.</p>
  2559. </td>
  2560. </tr>
  2561. <tr>
  2562. <td>
  2563. <code>target</code></br>
  2564. <em>
  2565. string
  2566. </em>
  2567. </td>
  2568. <td>
  2569. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  2570. </td>
  2571. </tr>
  2572. </tbody>
  2573. </table>
  2574. <h3 id="external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec
  2575. </h3>
  2576. <p>
  2577. (<em>Appears on:</em>
  2578. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  2579. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  2580. </p>
  2581. <p>
  2582. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</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>secretStoreRef</code></br>
  2595. <em>
  2596. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  2597. SecretStoreRef
  2598. </a>
  2599. </em>
  2600. </td>
  2601. <td>
  2602. </td>
  2603. </tr>
  2604. <tr>
  2605. <td>
  2606. <code>target</code></br>
  2607. <em>
  2608. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  2609. ExternalSecretTarget
  2610. </a>
  2611. </em>
  2612. </td>
  2613. <td>
  2614. <em>(Optional)</em>
  2615. </td>
  2616. </tr>
  2617. <tr>
  2618. <td>
  2619. <code>refreshInterval</code></br>
  2620. <em>
  2621. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  2622. Kubernetes meta/v1.Duration
  2623. </a>
  2624. </em>
  2625. </td>
  2626. <td>
  2627. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  2628. 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;
  2629. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  2630. </td>
  2631. </tr>
  2632. <tr>
  2633. <td>
  2634. <code>data</code></br>
  2635. <em>
  2636. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  2637. []ExternalSecretData
  2638. </a>
  2639. </em>
  2640. </td>
  2641. <td>
  2642. <em>(Optional)</em>
  2643. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  2644. </td>
  2645. </tr>
  2646. <tr>
  2647. <td>
  2648. <code>dataFrom</code></br>
  2649. <em>
  2650. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  2651. []ExternalSecretDataFromRemoteRef
  2652. </a>
  2653. </em>
  2654. </td>
  2655. <td>
  2656. <em>(Optional)</em>
  2657. <p>DataFrom is used to fetch all properties from a specific Provider data
  2658. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  2659. </td>
  2660. </tr>
  2661. </tbody>
  2662. </table>
  2663. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus
  2664. </h3>
  2665. <p>
  2666. (<em>Appears on:</em>
  2667. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  2668. </p>
  2669. <p>
  2670. </p>
  2671. <table>
  2672. <thead>
  2673. <tr>
  2674. <th>Field</th>
  2675. <th>Description</th>
  2676. </tr>
  2677. </thead>
  2678. <tbody>
  2679. <tr>
  2680. <td>
  2681. <code>refreshTime</code></br>
  2682. <em>
  2683. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  2684. Kubernetes meta/v1.Time
  2685. </a>
  2686. </em>
  2687. </td>
  2688. <td>
  2689. <p>refreshTime is the time and date the external secret was fetched and
  2690. the target secret updated</p>
  2691. </td>
  2692. </tr>
  2693. <tr>
  2694. <td>
  2695. <code>syncedResourceVersion</code></br>
  2696. <em>
  2697. string
  2698. </em>
  2699. </td>
  2700. <td>
  2701. <p>SyncedResourceVersion keeps track of the last synced version</p>
  2702. </td>
  2703. </tr>
  2704. <tr>
  2705. <td>
  2706. <code>conditions</code></br>
  2707. <em>
  2708. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">
  2709. []ExternalSecretStatusCondition
  2710. </a>
  2711. </em>
  2712. </td>
  2713. <td>
  2714. <em>(Optional)</em>
  2715. </td>
  2716. </tr>
  2717. </tbody>
  2718. </table>
  2719. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  2720. </h3>
  2721. <p>
  2722. (<em>Appears on:</em>
  2723. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus</a>)
  2724. </p>
  2725. <p>
  2726. </p>
  2727. <table>
  2728. <thead>
  2729. <tr>
  2730. <th>Field</th>
  2731. <th>Description</th>
  2732. </tr>
  2733. </thead>
  2734. <tbody>
  2735. <tr>
  2736. <td>
  2737. <code>type</code></br>
  2738. <em>
  2739. <a href="#external-secrets.io/v1beta1.ExternalSecretConditionType">
  2740. ExternalSecretConditionType
  2741. </a>
  2742. </em>
  2743. </td>
  2744. <td>
  2745. </td>
  2746. </tr>
  2747. <tr>
  2748. <td>
  2749. <code>status</code></br>
  2750. <em>
  2751. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  2752. Kubernetes core/v1.ConditionStatus
  2753. </a>
  2754. </em>
  2755. </td>
  2756. <td>
  2757. </td>
  2758. </tr>
  2759. <tr>
  2760. <td>
  2761. <code>reason</code></br>
  2762. <em>
  2763. string
  2764. </em>
  2765. </td>
  2766. <td>
  2767. <em>(Optional)</em>
  2768. </td>
  2769. </tr>
  2770. <tr>
  2771. <td>
  2772. <code>message</code></br>
  2773. <em>
  2774. string
  2775. </em>
  2776. </td>
  2777. <td>
  2778. <em>(Optional)</em>
  2779. </td>
  2780. </tr>
  2781. <tr>
  2782. <td>
  2783. <code>lastTransitionTime</code></br>
  2784. <em>
  2785. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  2786. Kubernetes meta/v1.Time
  2787. </a>
  2788. </em>
  2789. </td>
  2790. <td>
  2791. <em>(Optional)</em>
  2792. </td>
  2793. </tr>
  2794. </tbody>
  2795. </table>
  2796. <h3 id="external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget
  2797. </h3>
  2798. <p>
  2799. (<em>Appears on:</em>
  2800. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  2801. </p>
  2802. <p>
  2803. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  2804. There can be only one target per ExternalSecret.</p>
  2805. </p>
  2806. <table>
  2807. <thead>
  2808. <tr>
  2809. <th>Field</th>
  2810. <th>Description</th>
  2811. </tr>
  2812. </thead>
  2813. <tbody>
  2814. <tr>
  2815. <td>
  2816. <code>name</code></br>
  2817. <em>
  2818. string
  2819. </em>
  2820. </td>
  2821. <td>
  2822. <em>(Optional)</em>
  2823. <p>Name defines the name of the Secret resource to be managed
  2824. This field is immutable
  2825. Defaults to the .metadata.name of the ExternalSecret resource</p>
  2826. </td>
  2827. </tr>
  2828. <tr>
  2829. <td>
  2830. <code>creationPolicy</code></br>
  2831. <em>
  2832. <a href="#external-secrets.io/v1beta1.ExternalSecretCreationPolicy">
  2833. ExternalSecretCreationPolicy
  2834. </a>
  2835. </em>
  2836. </td>
  2837. <td>
  2838. <em>(Optional)</em>
  2839. <p>CreationPolicy defines rules on how to create the resulting Secret
  2840. Defaults to &lsquo;Owner&rsquo;</p>
  2841. </td>
  2842. </tr>
  2843. <tr>
  2844. <td>
  2845. <code>deletionPolicy</code></br>
  2846. <em>
  2847. <a href="#external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">
  2848. ExternalSecretDeletionPolicy
  2849. </a>
  2850. </em>
  2851. </td>
  2852. <td>
  2853. <em>(Optional)</em>
  2854. <p>DeletionPolicy defines rules on how to delete the resulting Secret
  2855. Defaults to &lsquo;Retain&rsquo;</p>
  2856. </td>
  2857. </tr>
  2858. <tr>
  2859. <td>
  2860. <code>template</code></br>
  2861. <em>
  2862. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">
  2863. ExternalSecretTemplate
  2864. </a>
  2865. </em>
  2866. </td>
  2867. <td>
  2868. <em>(Optional)</em>
  2869. <p>Template defines a blueprint for the created Secret resource.</p>
  2870. </td>
  2871. </tr>
  2872. <tr>
  2873. <td>
  2874. <code>immutable</code></br>
  2875. <em>
  2876. bool
  2877. </em>
  2878. </td>
  2879. <td>
  2880. <em>(Optional)</em>
  2881. <p>Immutable defines if the final secret will be immutable</p>
  2882. </td>
  2883. </tr>
  2884. </tbody>
  2885. </table>
  2886. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate
  2887. </h3>
  2888. <p>
  2889. (<em>Appears on:</em>
  2890. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  2891. </p>
  2892. <p>
  2893. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  2894. 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>
  2895. </p>
  2896. <table>
  2897. <thead>
  2898. <tr>
  2899. <th>Field</th>
  2900. <th>Description</th>
  2901. </tr>
  2902. </thead>
  2903. <tbody>
  2904. <tr>
  2905. <td>
  2906. <code>type</code></br>
  2907. <em>
  2908. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#secrettype-v1-core">
  2909. Kubernetes core/v1.SecretType
  2910. </a>
  2911. </em>
  2912. </td>
  2913. <td>
  2914. <em>(Optional)</em>
  2915. </td>
  2916. </tr>
  2917. <tr>
  2918. <td>
  2919. <code>engineVersion</code></br>
  2920. <em>
  2921. <a href="#external-secrets.io/v1beta1.TemplateEngineVersion">
  2922. TemplateEngineVersion
  2923. </a>
  2924. </em>
  2925. </td>
  2926. <td>
  2927. </td>
  2928. </tr>
  2929. <tr>
  2930. <td>
  2931. <code>metadata</code></br>
  2932. <em>
  2933. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">
  2934. ExternalSecretTemplateMetadata
  2935. </a>
  2936. </em>
  2937. </td>
  2938. <td>
  2939. <em>(Optional)</em>
  2940. </td>
  2941. </tr>
  2942. <tr>
  2943. <td>
  2944. <code>data</code></br>
  2945. <em>
  2946. map[string]string
  2947. </em>
  2948. </td>
  2949. <td>
  2950. <em>(Optional)</em>
  2951. </td>
  2952. </tr>
  2953. <tr>
  2954. <td>
  2955. <code>templateFrom</code></br>
  2956. <em>
  2957. <a href="#external-secrets.io/v1beta1.TemplateFrom">
  2958. []TemplateFrom
  2959. </a>
  2960. </em>
  2961. </td>
  2962. <td>
  2963. <em>(Optional)</em>
  2964. </td>
  2965. </tr>
  2966. </tbody>
  2967. </table>
  2968. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  2969. </h3>
  2970. <p>
  2971. (<em>Appears on:</em>
  2972. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  2973. </p>
  2974. <p>
  2975. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  2976. </p>
  2977. <table>
  2978. <thead>
  2979. <tr>
  2980. <th>Field</th>
  2981. <th>Description</th>
  2982. </tr>
  2983. </thead>
  2984. <tbody>
  2985. <tr>
  2986. <td>
  2987. <code>annotations</code></br>
  2988. <em>
  2989. map[string]string
  2990. </em>
  2991. </td>
  2992. <td>
  2993. <em>(Optional)</em>
  2994. </td>
  2995. </tr>
  2996. <tr>
  2997. <td>
  2998. <code>labels</code></br>
  2999. <em>
  3000. map[string]string
  3001. </em>
  3002. </td>
  3003. <td>
  3004. <em>(Optional)</em>
  3005. </td>
  3006. </tr>
  3007. </tbody>
  3008. </table>
  3009. <h3 id="external-secrets.io/v1beta1.ExternalSecretValidator">ExternalSecretValidator
  3010. </h3>
  3011. <p>
  3012. </p>
  3013. <h3 id="external-secrets.io/v1beta1.FakeProvider">FakeProvider
  3014. </h3>
  3015. <p>
  3016. (<em>Appears on:</em>
  3017. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3018. </p>
  3019. <p>
  3020. <p>FakeProvider configures a fake provider that returns static values.</p>
  3021. </p>
  3022. <table>
  3023. <thead>
  3024. <tr>
  3025. <th>Field</th>
  3026. <th>Description</th>
  3027. </tr>
  3028. </thead>
  3029. <tbody>
  3030. <tr>
  3031. <td>
  3032. <code>data</code></br>
  3033. <em>
  3034. <a href="#external-secrets.io/v1beta1.FakeProviderData">
  3035. []FakeProviderData
  3036. </a>
  3037. </em>
  3038. </td>
  3039. <td>
  3040. </td>
  3041. </tr>
  3042. </tbody>
  3043. </table>
  3044. <h3 id="external-secrets.io/v1beta1.FakeProviderData">FakeProviderData
  3045. </h3>
  3046. <p>
  3047. (<em>Appears on:</em>
  3048. <a href="#external-secrets.io/v1beta1.FakeProvider">FakeProvider</a>)
  3049. </p>
  3050. <p>
  3051. </p>
  3052. <table>
  3053. <thead>
  3054. <tr>
  3055. <th>Field</th>
  3056. <th>Description</th>
  3057. </tr>
  3058. </thead>
  3059. <tbody>
  3060. <tr>
  3061. <td>
  3062. <code>key</code></br>
  3063. <em>
  3064. string
  3065. </em>
  3066. </td>
  3067. <td>
  3068. </td>
  3069. </tr>
  3070. <tr>
  3071. <td>
  3072. <code>value</code></br>
  3073. <em>
  3074. string
  3075. </em>
  3076. </td>
  3077. <td>
  3078. </td>
  3079. </tr>
  3080. <tr>
  3081. <td>
  3082. <code>valueMap</code></br>
  3083. <em>
  3084. map[string]string
  3085. </em>
  3086. </td>
  3087. <td>
  3088. </td>
  3089. </tr>
  3090. <tr>
  3091. <td>
  3092. <code>version</code></br>
  3093. <em>
  3094. string
  3095. </em>
  3096. </td>
  3097. <td>
  3098. </td>
  3099. </tr>
  3100. </tbody>
  3101. </table>
  3102. <h3 id="external-secrets.io/v1beta1.FindName">FindName
  3103. </h3>
  3104. <p>
  3105. (<em>Appears on:</em>
  3106. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3107. </p>
  3108. <p>
  3109. </p>
  3110. <table>
  3111. <thead>
  3112. <tr>
  3113. <th>Field</th>
  3114. <th>Description</th>
  3115. </tr>
  3116. </thead>
  3117. <tbody>
  3118. <tr>
  3119. <td>
  3120. <code>regexp</code></br>
  3121. <em>
  3122. string
  3123. </em>
  3124. </td>
  3125. <td>
  3126. <em>(Optional)</em>
  3127. <p>Finds secrets base</p>
  3128. </td>
  3129. </tr>
  3130. </tbody>
  3131. </table>
  3132. <h3 id="external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth
  3133. </h3>
  3134. <p>
  3135. (<em>Appears on:</em>
  3136. <a href="#external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider</a>)
  3137. </p>
  3138. <p>
  3139. </p>
  3140. <table>
  3141. <thead>
  3142. <tr>
  3143. <th>Field</th>
  3144. <th>Description</th>
  3145. </tr>
  3146. </thead>
  3147. <tbody>
  3148. <tr>
  3149. <td>
  3150. <code>secretRef</code></br>
  3151. <em>
  3152. <a href="#external-secrets.io/v1beta1.GCPSMAuthSecretRef">
  3153. GCPSMAuthSecretRef
  3154. </a>
  3155. </em>
  3156. </td>
  3157. <td>
  3158. <em>(Optional)</em>
  3159. </td>
  3160. </tr>
  3161. <tr>
  3162. <td>
  3163. <code>workloadIdentity</code></br>
  3164. <em>
  3165. <a href="#external-secrets.io/v1beta1.GCPWorkloadIdentity">
  3166. GCPWorkloadIdentity
  3167. </a>
  3168. </em>
  3169. </td>
  3170. <td>
  3171. <em>(Optional)</em>
  3172. </td>
  3173. </tr>
  3174. </tbody>
  3175. </table>
  3176. <h3 id="external-secrets.io/v1beta1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  3177. </h3>
  3178. <p>
  3179. (<em>Appears on:</em>
  3180. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  3181. </p>
  3182. <p>
  3183. </p>
  3184. <table>
  3185. <thead>
  3186. <tr>
  3187. <th>Field</th>
  3188. <th>Description</th>
  3189. </tr>
  3190. </thead>
  3191. <tbody>
  3192. <tr>
  3193. <td>
  3194. <code>secretAccessKeySecretRef</code></br>
  3195. <em>
  3196. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3197. </em>
  3198. </td>
  3199. <td>
  3200. <em>(Optional)</em>
  3201. <p>The SecretAccessKey is used for authentication</p>
  3202. </td>
  3203. </tr>
  3204. </tbody>
  3205. </table>
  3206. <h3 id="external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider
  3207. </h3>
  3208. <p>
  3209. (<em>Appears on:</em>
  3210. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3211. </p>
  3212. <p>
  3213. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  3214. </p>
  3215. <table>
  3216. <thead>
  3217. <tr>
  3218. <th>Field</th>
  3219. <th>Description</th>
  3220. </tr>
  3221. </thead>
  3222. <tbody>
  3223. <tr>
  3224. <td>
  3225. <code>auth</code></br>
  3226. <em>
  3227. <a href="#external-secrets.io/v1beta1.GCPSMAuth">
  3228. GCPSMAuth
  3229. </a>
  3230. </em>
  3231. </td>
  3232. <td>
  3233. <em>(Optional)</em>
  3234. <p>Auth defines the information necessary to authenticate against GCP</p>
  3235. </td>
  3236. </tr>
  3237. <tr>
  3238. <td>
  3239. <code>projectID</code></br>
  3240. <em>
  3241. string
  3242. </em>
  3243. </td>
  3244. <td>
  3245. <p>ProjectID project where secret is located</p>
  3246. </td>
  3247. </tr>
  3248. </tbody>
  3249. </table>
  3250. <h3 id="external-secrets.io/v1beta1.GCPWorkloadIdentity">GCPWorkloadIdentity
  3251. </h3>
  3252. <p>
  3253. (<em>Appears on:</em>
  3254. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  3255. </p>
  3256. <p>
  3257. </p>
  3258. <table>
  3259. <thead>
  3260. <tr>
  3261. <th>Field</th>
  3262. <th>Description</th>
  3263. </tr>
  3264. </thead>
  3265. <tbody>
  3266. <tr>
  3267. <td>
  3268. <code>serviceAccountRef</code></br>
  3269. <em>
  3270. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  3271. </em>
  3272. </td>
  3273. <td>
  3274. </td>
  3275. </tr>
  3276. <tr>
  3277. <td>
  3278. <code>clusterLocation</code></br>
  3279. <em>
  3280. string
  3281. </em>
  3282. </td>
  3283. <td>
  3284. </td>
  3285. </tr>
  3286. <tr>
  3287. <td>
  3288. <code>clusterName</code></br>
  3289. <em>
  3290. string
  3291. </em>
  3292. </td>
  3293. <td>
  3294. </td>
  3295. </tr>
  3296. <tr>
  3297. <td>
  3298. <code>clusterProjectID</code></br>
  3299. <em>
  3300. string
  3301. </em>
  3302. </td>
  3303. <td>
  3304. </td>
  3305. </tr>
  3306. </tbody>
  3307. </table>
  3308. <h3 id="external-secrets.io/v1beta1.GenericStore">GenericStore
  3309. </h3>
  3310. <p>
  3311. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  3312. or a namespaced SecretStore.</p>
  3313. </p>
  3314. <h3 id="external-secrets.io/v1beta1.GenericStoreValidator">GenericStoreValidator
  3315. </h3>
  3316. <p>
  3317. </p>
  3318. <h3 id="external-secrets.io/v1beta1.GitlabAuth">GitlabAuth
  3319. </h3>
  3320. <p>
  3321. (<em>Appears on:</em>
  3322. <a href="#external-secrets.io/v1beta1.GitlabProvider">GitlabProvider</a>)
  3323. </p>
  3324. <p>
  3325. </p>
  3326. <table>
  3327. <thead>
  3328. <tr>
  3329. <th>Field</th>
  3330. <th>Description</th>
  3331. </tr>
  3332. </thead>
  3333. <tbody>
  3334. <tr>
  3335. <td>
  3336. <code>SecretRef</code></br>
  3337. <em>
  3338. <a href="#external-secrets.io/v1beta1.GitlabSecretRef">
  3339. GitlabSecretRef
  3340. </a>
  3341. </em>
  3342. </td>
  3343. <td>
  3344. </td>
  3345. </tr>
  3346. </tbody>
  3347. </table>
  3348. <h3 id="external-secrets.io/v1beta1.GitlabProvider">GitlabProvider
  3349. </h3>
  3350. <p>
  3351. (<em>Appears on:</em>
  3352. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3353. </p>
  3354. <p>
  3355. <p>Configures a store to sync secrets with a GitLab instance.</p>
  3356. </p>
  3357. <table>
  3358. <thead>
  3359. <tr>
  3360. <th>Field</th>
  3361. <th>Description</th>
  3362. </tr>
  3363. </thead>
  3364. <tbody>
  3365. <tr>
  3366. <td>
  3367. <code>url</code></br>
  3368. <em>
  3369. string
  3370. </em>
  3371. </td>
  3372. <td>
  3373. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  3374. </td>
  3375. </tr>
  3376. <tr>
  3377. <td>
  3378. <code>auth</code></br>
  3379. <em>
  3380. <a href="#external-secrets.io/v1beta1.GitlabAuth">
  3381. GitlabAuth
  3382. </a>
  3383. </em>
  3384. </td>
  3385. <td>
  3386. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  3387. </td>
  3388. </tr>
  3389. <tr>
  3390. <td>
  3391. <code>projectID</code></br>
  3392. <em>
  3393. string
  3394. </em>
  3395. </td>
  3396. <td>
  3397. <p>ProjectID specifies a project where secrets are located.</p>
  3398. </td>
  3399. </tr>
  3400. </tbody>
  3401. </table>
  3402. <h3 id="external-secrets.io/v1beta1.GitlabSecretRef">GitlabSecretRef
  3403. </h3>
  3404. <p>
  3405. (<em>Appears on:</em>
  3406. <a href="#external-secrets.io/v1beta1.GitlabAuth">GitlabAuth</a>)
  3407. </p>
  3408. <p>
  3409. </p>
  3410. <table>
  3411. <thead>
  3412. <tr>
  3413. <th>Field</th>
  3414. <th>Description</th>
  3415. </tr>
  3416. </thead>
  3417. <tbody>
  3418. <tr>
  3419. <td>
  3420. <code>accessToken</code></br>
  3421. <em>
  3422. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3423. </em>
  3424. </td>
  3425. <td>
  3426. <p>AccessToken is used for authentication.</p>
  3427. </td>
  3428. </tr>
  3429. </tbody>
  3430. </table>
  3431. <h3 id="external-secrets.io/v1beta1.IBMAuth">IBMAuth
  3432. </h3>
  3433. <p>
  3434. (<em>Appears on:</em>
  3435. <a href="#external-secrets.io/v1beta1.IBMProvider">IBMProvider</a>)
  3436. </p>
  3437. <p>
  3438. </p>
  3439. <table>
  3440. <thead>
  3441. <tr>
  3442. <th>Field</th>
  3443. <th>Description</th>
  3444. </tr>
  3445. </thead>
  3446. <tbody>
  3447. <tr>
  3448. <td>
  3449. <code>secretRef</code></br>
  3450. <em>
  3451. <a href="#external-secrets.io/v1beta1.IBMAuthSecretRef">
  3452. IBMAuthSecretRef
  3453. </a>
  3454. </em>
  3455. </td>
  3456. <td>
  3457. </td>
  3458. </tr>
  3459. <tr>
  3460. <td>
  3461. <code>containerAuth</code></br>
  3462. <em>
  3463. <a href="#external-secrets.io/v1beta1.IBMAuthContainerAuth">
  3464. IBMAuthContainerAuth
  3465. </a>
  3466. </em>
  3467. </td>
  3468. <td>
  3469. </td>
  3470. </tr>
  3471. </tbody>
  3472. </table>
  3473. <h3 id="external-secrets.io/v1beta1.IBMAuthContainerAuth">IBMAuthContainerAuth
  3474. </h3>
  3475. <p>
  3476. (<em>Appears on:</em>
  3477. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  3478. </p>
  3479. <p>
  3480. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  3481. </p>
  3482. <table>
  3483. <thead>
  3484. <tr>
  3485. <th>Field</th>
  3486. <th>Description</th>
  3487. </tr>
  3488. </thead>
  3489. <tbody>
  3490. <tr>
  3491. <td>
  3492. <code>profile</code></br>
  3493. <em>
  3494. string
  3495. </em>
  3496. </td>
  3497. <td>
  3498. <p>the IBM Trusted Profile</p>
  3499. </td>
  3500. </tr>
  3501. <tr>
  3502. <td>
  3503. <code>tokenLocation</code></br>
  3504. <em>
  3505. string
  3506. </em>
  3507. </td>
  3508. <td>
  3509. <p>Location the token is mounted on the pod</p>
  3510. </td>
  3511. </tr>
  3512. <tr>
  3513. <td>
  3514. <code>iamEndpoint</code></br>
  3515. <em>
  3516. string
  3517. </em>
  3518. </td>
  3519. <td>
  3520. </td>
  3521. </tr>
  3522. </tbody>
  3523. </table>
  3524. <h3 id="external-secrets.io/v1beta1.IBMAuthSecretRef">IBMAuthSecretRef
  3525. </h3>
  3526. <p>
  3527. (<em>Appears on:</em>
  3528. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  3529. </p>
  3530. <p>
  3531. </p>
  3532. <table>
  3533. <thead>
  3534. <tr>
  3535. <th>Field</th>
  3536. <th>Description</th>
  3537. </tr>
  3538. </thead>
  3539. <tbody>
  3540. <tr>
  3541. <td>
  3542. <code>secretApiKeySecretRef</code></br>
  3543. <em>
  3544. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3545. </em>
  3546. </td>
  3547. <td>
  3548. <p>The SecretAccessKey is used for authentication</p>
  3549. </td>
  3550. </tr>
  3551. </tbody>
  3552. </table>
  3553. <h3 id="external-secrets.io/v1beta1.IBMProvider">IBMProvider
  3554. </h3>
  3555. <p>
  3556. (<em>Appears on:</em>
  3557. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3558. </p>
  3559. <p>
  3560. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  3561. backend.</p>
  3562. </p>
  3563. <table>
  3564. <thead>
  3565. <tr>
  3566. <th>Field</th>
  3567. <th>Description</th>
  3568. </tr>
  3569. </thead>
  3570. <tbody>
  3571. <tr>
  3572. <td>
  3573. <code>auth</code></br>
  3574. <em>
  3575. <a href="#external-secrets.io/v1beta1.IBMAuth">
  3576. IBMAuth
  3577. </a>
  3578. </em>
  3579. </td>
  3580. <td>
  3581. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  3582. </td>
  3583. </tr>
  3584. <tr>
  3585. <td>
  3586. <code>serviceUrl</code></br>
  3587. <em>
  3588. string
  3589. </em>
  3590. </td>
  3591. <td>
  3592. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  3593. </td>
  3594. </tr>
  3595. </tbody>
  3596. </table>
  3597. <h3 id="external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth
  3598. </h3>
  3599. <p>
  3600. (<em>Appears on:</em>
  3601. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  3602. </p>
  3603. <p>
  3604. </p>
  3605. <table>
  3606. <thead>
  3607. <tr>
  3608. <th>Field</th>
  3609. <th>Description</th>
  3610. </tr>
  3611. </thead>
  3612. <tbody>
  3613. <tr>
  3614. <td>
  3615. <code>cert</code></br>
  3616. <em>
  3617. <a href="#external-secrets.io/v1beta1.CertAuth">
  3618. CertAuth
  3619. </a>
  3620. </em>
  3621. </td>
  3622. <td>
  3623. <em>(Optional)</em>
  3624. <p>has both clientCert and clientKey as secretKeySelector</p>
  3625. </td>
  3626. </tr>
  3627. <tr>
  3628. <td>
  3629. <code>token</code></br>
  3630. <em>
  3631. <a href="#external-secrets.io/v1beta1.TokenAuth">
  3632. TokenAuth
  3633. </a>
  3634. </em>
  3635. </td>
  3636. <td>
  3637. <em>(Optional)</em>
  3638. <p>use static token to authenticate with</p>
  3639. </td>
  3640. </tr>
  3641. <tr>
  3642. <td>
  3643. <code>serviceAccount</code></br>
  3644. <em>
  3645. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  3646. </em>
  3647. </td>
  3648. <td>
  3649. <em>(Optional)</em>
  3650. <p>points to a service account that should be used for authentication</p>
  3651. </td>
  3652. </tr>
  3653. </tbody>
  3654. </table>
  3655. <h3 id="external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider
  3656. </h3>
  3657. <p>
  3658. (<em>Appears on:</em>
  3659. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3660. </p>
  3661. <p>
  3662. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  3663. </p>
  3664. <table>
  3665. <thead>
  3666. <tr>
  3667. <th>Field</th>
  3668. <th>Description</th>
  3669. </tr>
  3670. </thead>
  3671. <tbody>
  3672. <tr>
  3673. <td>
  3674. <code>server</code></br>
  3675. <em>
  3676. <a href="#external-secrets.io/v1beta1.KubernetesServer">
  3677. KubernetesServer
  3678. </a>
  3679. </em>
  3680. </td>
  3681. <td>
  3682. <p>configures the Kubernetes server Address.</p>
  3683. </td>
  3684. </tr>
  3685. <tr>
  3686. <td>
  3687. <code>auth</code></br>
  3688. <em>
  3689. <a href="#external-secrets.io/v1beta1.KubernetesAuth">
  3690. KubernetesAuth
  3691. </a>
  3692. </em>
  3693. </td>
  3694. <td>
  3695. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  3696. </td>
  3697. </tr>
  3698. <tr>
  3699. <td>
  3700. <code>remoteNamespace</code></br>
  3701. <em>
  3702. string
  3703. </em>
  3704. </td>
  3705. <td>
  3706. <em>(Optional)</em>
  3707. <p>Remote namespace to fetch the secrets from</p>
  3708. </td>
  3709. </tr>
  3710. </tbody>
  3711. </table>
  3712. <h3 id="external-secrets.io/v1beta1.KubernetesServer">KubernetesServer
  3713. </h3>
  3714. <p>
  3715. (<em>Appears on:</em>
  3716. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  3717. </p>
  3718. <p>
  3719. </p>
  3720. <table>
  3721. <thead>
  3722. <tr>
  3723. <th>Field</th>
  3724. <th>Description</th>
  3725. </tr>
  3726. </thead>
  3727. <tbody>
  3728. <tr>
  3729. <td>
  3730. <code>url</code></br>
  3731. <em>
  3732. string
  3733. </em>
  3734. </td>
  3735. <td>
  3736. <em>(Optional)</em>
  3737. <p>configures the Kubernetes server Address.</p>
  3738. </td>
  3739. </tr>
  3740. <tr>
  3741. <td>
  3742. <code>caBundle</code></br>
  3743. <em>
  3744. []byte
  3745. </em>
  3746. </td>
  3747. <td>
  3748. <em>(Optional)</em>
  3749. <p>CABundle is a base64-encoded CA certificate</p>
  3750. </td>
  3751. </tr>
  3752. <tr>
  3753. <td>
  3754. <code>caProvider</code></br>
  3755. <em>
  3756. <a href="#external-secrets.io/v1beta1.CAProvider">
  3757. CAProvider
  3758. </a>
  3759. </em>
  3760. </td>
  3761. <td>
  3762. <em>(Optional)</em>
  3763. <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>
  3764. </td>
  3765. </tr>
  3766. </tbody>
  3767. </table>
  3768. <h3 id="external-secrets.io/v1beta1.NoSecretError">NoSecretError
  3769. </h3>
  3770. <p>
  3771. <p>NoSecretError shall be returned when a GetSecret can not find the
  3772. desired secret. This is used for deletionPolicy.</p>
  3773. </p>
  3774. <h3 id="external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth
  3775. </h3>
  3776. <p>
  3777. (<em>Appears on:</em>
  3778. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider</a>)
  3779. </p>
  3780. <p>
  3781. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  3782. </p>
  3783. <table>
  3784. <thead>
  3785. <tr>
  3786. <th>Field</th>
  3787. <th>Description</th>
  3788. </tr>
  3789. </thead>
  3790. <tbody>
  3791. <tr>
  3792. <td>
  3793. <code>secretRef</code></br>
  3794. <em>
  3795. <a href="#external-secrets.io/v1beta1.OnePasswordAuthSecretRef">
  3796. OnePasswordAuthSecretRef
  3797. </a>
  3798. </em>
  3799. </td>
  3800. <td>
  3801. </td>
  3802. </tr>
  3803. </tbody>
  3804. </table>
  3805. <h3 id="external-secrets.io/v1beta1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  3806. </h3>
  3807. <p>
  3808. (<em>Appears on:</em>
  3809. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth</a>)
  3810. </p>
  3811. <p>
  3812. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  3813. </p>
  3814. <table>
  3815. <thead>
  3816. <tr>
  3817. <th>Field</th>
  3818. <th>Description</th>
  3819. </tr>
  3820. </thead>
  3821. <tbody>
  3822. <tr>
  3823. <td>
  3824. <code>connectTokenSecretRef</code></br>
  3825. <em>
  3826. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3827. </em>
  3828. </td>
  3829. <td>
  3830. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  3831. </td>
  3832. </tr>
  3833. </tbody>
  3834. </table>
  3835. <h3 id="external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider
  3836. </h3>
  3837. <p>
  3838. (<em>Appears on:</em>
  3839. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3840. </p>
  3841. <p>
  3842. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  3843. </p>
  3844. <table>
  3845. <thead>
  3846. <tr>
  3847. <th>Field</th>
  3848. <th>Description</th>
  3849. </tr>
  3850. </thead>
  3851. <tbody>
  3852. <tr>
  3853. <td>
  3854. <code>auth</code></br>
  3855. <em>
  3856. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">
  3857. OnePasswordAuth
  3858. </a>
  3859. </em>
  3860. </td>
  3861. <td>
  3862. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  3863. </td>
  3864. </tr>
  3865. <tr>
  3866. <td>
  3867. <code>connectHost</code></br>
  3868. <em>
  3869. string
  3870. </em>
  3871. </td>
  3872. <td>
  3873. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  3874. </td>
  3875. </tr>
  3876. <tr>
  3877. <td>
  3878. <code>vaults</code></br>
  3879. <em>
  3880. map[string]int
  3881. </em>
  3882. </td>
  3883. <td>
  3884. <p>Vaults defines which OnePassword vaults to search in which order</p>
  3885. </td>
  3886. </tr>
  3887. </tbody>
  3888. </table>
  3889. <h3 id="external-secrets.io/v1beta1.OracleAuth">OracleAuth
  3890. </h3>
  3891. <p>
  3892. (<em>Appears on:</em>
  3893. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  3894. </p>
  3895. <p>
  3896. </p>
  3897. <table>
  3898. <thead>
  3899. <tr>
  3900. <th>Field</th>
  3901. <th>Description</th>
  3902. </tr>
  3903. </thead>
  3904. <tbody>
  3905. <tr>
  3906. <td>
  3907. <code>tenancy</code></br>
  3908. <em>
  3909. string
  3910. </em>
  3911. </td>
  3912. <td>
  3913. <p>Tenancy is the tenancy OCID where user is located.</p>
  3914. </td>
  3915. </tr>
  3916. <tr>
  3917. <td>
  3918. <code>user</code></br>
  3919. <em>
  3920. string
  3921. </em>
  3922. </td>
  3923. <td>
  3924. <p>User is an access OCID specific to the account.</p>
  3925. </td>
  3926. </tr>
  3927. <tr>
  3928. <td>
  3929. <code>secretRef</code></br>
  3930. <em>
  3931. <a href="#external-secrets.io/v1beta1.OracleSecretRef">
  3932. OracleSecretRef
  3933. </a>
  3934. </em>
  3935. </td>
  3936. <td>
  3937. <p>SecretRef to pass through sensitive information.</p>
  3938. </td>
  3939. </tr>
  3940. </tbody>
  3941. </table>
  3942. <h3 id="external-secrets.io/v1beta1.OracleProvider">OracleProvider
  3943. </h3>
  3944. <p>
  3945. (<em>Appears on:</em>
  3946. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3947. </p>
  3948. <p>
  3949. <p>Configures an store to sync secrets using a Oracle Vault
  3950. backend.</p>
  3951. </p>
  3952. <table>
  3953. <thead>
  3954. <tr>
  3955. <th>Field</th>
  3956. <th>Description</th>
  3957. </tr>
  3958. </thead>
  3959. <tbody>
  3960. <tr>
  3961. <td>
  3962. <code>region</code></br>
  3963. <em>
  3964. string
  3965. </em>
  3966. </td>
  3967. <td>
  3968. <p>Region is the region where vault is located.</p>
  3969. </td>
  3970. </tr>
  3971. <tr>
  3972. <td>
  3973. <code>vault</code></br>
  3974. <em>
  3975. string
  3976. </em>
  3977. </td>
  3978. <td>
  3979. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  3980. </td>
  3981. </tr>
  3982. <tr>
  3983. <td>
  3984. <code>auth</code></br>
  3985. <em>
  3986. <a href="#external-secrets.io/v1beta1.OracleAuth">
  3987. OracleAuth
  3988. </a>
  3989. </em>
  3990. </td>
  3991. <td>
  3992. <em>(Optional)</em>
  3993. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  3994. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  3995. </td>
  3996. </tr>
  3997. </tbody>
  3998. </table>
  3999. <h3 id="external-secrets.io/v1beta1.OracleSecretRef">OracleSecretRef
  4000. </h3>
  4001. <p>
  4002. (<em>Appears on:</em>
  4003. <a href="#external-secrets.io/v1beta1.OracleAuth">OracleAuth</a>)
  4004. </p>
  4005. <p>
  4006. </p>
  4007. <table>
  4008. <thead>
  4009. <tr>
  4010. <th>Field</th>
  4011. <th>Description</th>
  4012. </tr>
  4013. </thead>
  4014. <tbody>
  4015. <tr>
  4016. <td>
  4017. <code>privatekey</code></br>
  4018. <em>
  4019. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4020. </em>
  4021. </td>
  4022. <td>
  4023. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  4024. </td>
  4025. </tr>
  4026. <tr>
  4027. <td>
  4028. <code>fingerprint</code></br>
  4029. <em>
  4030. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4031. </em>
  4032. </td>
  4033. <td>
  4034. <p>Fingerprint is the fingerprint of the API private key.</p>
  4035. </td>
  4036. </tr>
  4037. </tbody>
  4038. </table>
  4039. <h3 id="external-secrets.io/v1beta1.Provider">Provider
  4040. </h3>
  4041. <p>
  4042. <p>Provider is a common interface for interacting with secret backends.</p>
  4043. </p>
  4044. <h3 id="external-secrets.io/v1beta1.SecretStore">SecretStore
  4045. </h3>
  4046. <p>
  4047. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  4048. </p>
  4049. <table>
  4050. <thead>
  4051. <tr>
  4052. <th>Field</th>
  4053. <th>Description</th>
  4054. </tr>
  4055. </thead>
  4056. <tbody>
  4057. <tr>
  4058. <td>
  4059. <code>metadata</code></br>
  4060. <em>
  4061. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  4062. Kubernetes meta/v1.ObjectMeta
  4063. </a>
  4064. </em>
  4065. </td>
  4066. <td>
  4067. Refer to the Kubernetes API documentation for the fields of the
  4068. <code>metadata</code> field.
  4069. </td>
  4070. </tr>
  4071. <tr>
  4072. <td>
  4073. <code>spec</code></br>
  4074. <em>
  4075. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  4076. SecretStoreSpec
  4077. </a>
  4078. </em>
  4079. </td>
  4080. <td>
  4081. <br/>
  4082. <br/>
  4083. <table>
  4084. <tr>
  4085. <td>
  4086. <code>controller</code></br>
  4087. <em>
  4088. string
  4089. </em>
  4090. </td>
  4091. <td>
  4092. <em>(Optional)</em>
  4093. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  4094. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  4095. </td>
  4096. </tr>
  4097. <tr>
  4098. <td>
  4099. <code>provider</code></br>
  4100. <em>
  4101. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  4102. SecretStoreProvider
  4103. </a>
  4104. </em>
  4105. </td>
  4106. <td>
  4107. <p>Used to configure the provider. Only one provider may be set</p>
  4108. </td>
  4109. </tr>
  4110. <tr>
  4111. <td>
  4112. <code>retrySettings</code></br>
  4113. <em>
  4114. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  4115. SecretStoreRetrySettings
  4116. </a>
  4117. </em>
  4118. </td>
  4119. <td>
  4120. <em>(Optional)</em>
  4121. <p>Used to configure http retries if failed</p>
  4122. </td>
  4123. </tr>
  4124. <tr>
  4125. <td>
  4126. <code>refreshInterval</code></br>
  4127. <em>
  4128. int
  4129. </em>
  4130. </td>
  4131. <td>
  4132. <em>(Optional)</em>
  4133. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  4134. </td>
  4135. </tr>
  4136. </table>
  4137. </td>
  4138. </tr>
  4139. <tr>
  4140. <td>
  4141. <code>status</code></br>
  4142. <em>
  4143. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  4144. SecretStoreStatus
  4145. </a>
  4146. </em>
  4147. </td>
  4148. <td>
  4149. </td>
  4150. </tr>
  4151. </tbody>
  4152. </table>
  4153. <h3 id="external-secrets.io/v1beta1.SecretStoreConditionType">SecretStoreConditionType
  4154. (<code>string</code> alias)</p></h3>
  4155. <p>
  4156. (<em>Appears on:</em>
  4157. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  4158. </p>
  4159. <p>
  4160. </p>
  4161. <table>
  4162. <thead>
  4163. <tr>
  4164. <th>Value</th>
  4165. <th>Description</th>
  4166. </tr>
  4167. </thead>
  4168. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  4169. <td></td>
  4170. </tr></tbody>
  4171. </table>
  4172. <h3 id="external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider
  4173. </h3>
  4174. <p>
  4175. (<em>Appears on:</em>
  4176. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  4177. </p>
  4178. <p>
  4179. <p>SecretStoreProvider contains the provider-specific configration.</p>
  4180. </p>
  4181. <table>
  4182. <thead>
  4183. <tr>
  4184. <th>Field</th>
  4185. <th>Description</th>
  4186. </tr>
  4187. </thead>
  4188. <tbody>
  4189. <tr>
  4190. <td>
  4191. <code>aws</code></br>
  4192. <em>
  4193. <a href="#external-secrets.io/v1beta1.AWSProvider">
  4194. AWSProvider
  4195. </a>
  4196. </em>
  4197. </td>
  4198. <td>
  4199. <em>(Optional)</em>
  4200. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  4201. </td>
  4202. </tr>
  4203. <tr>
  4204. <td>
  4205. <code>azurekv</code></br>
  4206. <em>
  4207. <a href="#external-secrets.io/v1beta1.AzureKVProvider">
  4208. AzureKVProvider
  4209. </a>
  4210. </em>
  4211. </td>
  4212. <td>
  4213. <em>(Optional)</em>
  4214. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  4215. </td>
  4216. </tr>
  4217. <tr>
  4218. <td>
  4219. <code>akeyless</code></br>
  4220. <em>
  4221. <a href="#external-secrets.io/v1beta1.AkeylessProvider">
  4222. AkeylessProvider
  4223. </a>
  4224. </em>
  4225. </td>
  4226. <td>
  4227. <em>(Optional)</em>
  4228. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  4229. </td>
  4230. </tr>
  4231. <tr>
  4232. <td>
  4233. <code>vault</code></br>
  4234. <em>
  4235. <a href="#external-secrets.io/v1beta1.VaultProvider">
  4236. VaultProvider
  4237. </a>
  4238. </em>
  4239. </td>
  4240. <td>
  4241. <em>(Optional)</em>
  4242. <p>Vault configures this store to sync secrets using Hashi provider</p>
  4243. </td>
  4244. </tr>
  4245. <tr>
  4246. <td>
  4247. <code>gcpsm</code></br>
  4248. <em>
  4249. <a href="#external-secrets.io/v1beta1.GCPSMProvider">
  4250. GCPSMProvider
  4251. </a>
  4252. </em>
  4253. </td>
  4254. <td>
  4255. <em>(Optional)</em>
  4256. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  4257. </td>
  4258. </tr>
  4259. <tr>
  4260. <td>
  4261. <code>oracle</code></br>
  4262. <em>
  4263. <a href="#external-secrets.io/v1beta1.OracleProvider">
  4264. OracleProvider
  4265. </a>
  4266. </em>
  4267. </td>
  4268. <td>
  4269. <em>(Optional)</em>
  4270. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  4271. </td>
  4272. </tr>
  4273. <tr>
  4274. <td>
  4275. <code>ibm</code></br>
  4276. <em>
  4277. <a href="#external-secrets.io/v1beta1.IBMProvider">
  4278. IBMProvider
  4279. </a>
  4280. </em>
  4281. </td>
  4282. <td>
  4283. <em>(Optional)</em>
  4284. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  4285. </td>
  4286. </tr>
  4287. <tr>
  4288. <td>
  4289. <code>yandexcertificatemanager</code></br>
  4290. <em>
  4291. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">
  4292. YandexCertificateManagerProvider
  4293. </a>
  4294. </em>
  4295. </td>
  4296. <td>
  4297. <em>(Optional)</em>
  4298. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  4299. </td>
  4300. </tr>
  4301. <tr>
  4302. <td>
  4303. <code>yandexlockbox</code></br>
  4304. <em>
  4305. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">
  4306. YandexLockboxProvider
  4307. </a>
  4308. </em>
  4309. </td>
  4310. <td>
  4311. <em>(Optional)</em>
  4312. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  4313. </td>
  4314. </tr>
  4315. <tr>
  4316. <td>
  4317. <code>gitlab</code></br>
  4318. <em>
  4319. <a href="#external-secrets.io/v1beta1.GitlabProvider">
  4320. GitlabProvider
  4321. </a>
  4322. </em>
  4323. </td>
  4324. <td>
  4325. <em>(Optional)</em>
  4326. <p>Gitlab configures this store to sync secrets using Gitlab Variables provider</p>
  4327. </td>
  4328. </tr>
  4329. <tr>
  4330. <td>
  4331. <code>alibaba</code></br>
  4332. <em>
  4333. <a href="#external-secrets.io/v1beta1.AlibabaProvider">
  4334. AlibabaProvider
  4335. </a>
  4336. </em>
  4337. </td>
  4338. <td>
  4339. <em>(Optional)</em>
  4340. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  4341. </td>
  4342. </tr>
  4343. <tr>
  4344. <td>
  4345. <code>onepassword</code></br>
  4346. <em>
  4347. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">
  4348. OnePasswordProvider
  4349. </a>
  4350. </em>
  4351. </td>
  4352. <td>
  4353. <em>(Optional)</em>
  4354. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  4355. </td>
  4356. </tr>
  4357. <tr>
  4358. <td>
  4359. <code>webhook</code></br>
  4360. <em>
  4361. <a href="#external-secrets.io/v1beta1.WebhookProvider">
  4362. WebhookProvider
  4363. </a>
  4364. </em>
  4365. </td>
  4366. <td>
  4367. <em>(Optional)</em>
  4368. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  4369. </td>
  4370. </tr>
  4371. <tr>
  4372. <td>
  4373. <code>kubernetes</code></br>
  4374. <em>
  4375. <a href="#external-secrets.io/v1beta1.KubernetesProvider">
  4376. KubernetesProvider
  4377. </a>
  4378. </em>
  4379. </td>
  4380. <td>
  4381. <em>(Optional)</em>
  4382. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  4383. </td>
  4384. </tr>
  4385. <tr>
  4386. <td>
  4387. <code>fake</code></br>
  4388. <em>
  4389. <a href="#external-secrets.io/v1beta1.FakeProvider">
  4390. FakeProvider
  4391. </a>
  4392. </em>
  4393. </td>
  4394. <td>
  4395. <em>(Optional)</em>
  4396. <p>Fake configures a store with static key/value pairs</p>
  4397. </td>
  4398. </tr>
  4399. <tr>
  4400. <td>
  4401. <code>senhasegura</code></br>
  4402. <em>
  4403. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">
  4404. SenhaseguraProvider
  4405. </a>
  4406. </em>
  4407. </td>
  4408. <td>
  4409. <em>(Optional)</em>
  4410. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  4411. </td>
  4412. </tr>
  4413. </tbody>
  4414. </table>
  4415. <h3 id="external-secrets.io/v1beta1.SecretStoreRef">SecretStoreRef
  4416. </h3>
  4417. <p>
  4418. (<em>Appears on:</em>
  4419. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4420. </p>
  4421. <p>
  4422. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  4423. </p>
  4424. <table>
  4425. <thead>
  4426. <tr>
  4427. <th>Field</th>
  4428. <th>Description</th>
  4429. </tr>
  4430. </thead>
  4431. <tbody>
  4432. <tr>
  4433. <td>
  4434. <code>name</code></br>
  4435. <em>
  4436. string
  4437. </em>
  4438. </td>
  4439. <td>
  4440. <p>Name of the SecretStore resource</p>
  4441. </td>
  4442. </tr>
  4443. <tr>
  4444. <td>
  4445. <code>kind</code></br>
  4446. <em>
  4447. string
  4448. </em>
  4449. </td>
  4450. <td>
  4451. <em>(Optional)</em>
  4452. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  4453. Defaults to <code>SecretStore</code></p>
  4454. </td>
  4455. </tr>
  4456. </tbody>
  4457. </table>
  4458. <h3 id="external-secrets.io/v1beta1.SecretStoreRetrySettings">SecretStoreRetrySettings
  4459. </h3>
  4460. <p>
  4461. (<em>Appears on:</em>
  4462. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  4463. </p>
  4464. <p>
  4465. </p>
  4466. <table>
  4467. <thead>
  4468. <tr>
  4469. <th>Field</th>
  4470. <th>Description</th>
  4471. </tr>
  4472. </thead>
  4473. <tbody>
  4474. <tr>
  4475. <td>
  4476. <code>maxRetries</code></br>
  4477. <em>
  4478. int32
  4479. </em>
  4480. </td>
  4481. <td>
  4482. </td>
  4483. </tr>
  4484. <tr>
  4485. <td>
  4486. <code>retryInterval</code></br>
  4487. <em>
  4488. string
  4489. </em>
  4490. </td>
  4491. <td>
  4492. </td>
  4493. </tr>
  4494. </tbody>
  4495. </table>
  4496. <h3 id="external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec
  4497. </h3>
  4498. <p>
  4499. (<em>Appears on:</em>
  4500. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  4501. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  4502. </p>
  4503. <p>
  4504. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  4505. </p>
  4506. <table>
  4507. <thead>
  4508. <tr>
  4509. <th>Field</th>
  4510. <th>Description</th>
  4511. </tr>
  4512. </thead>
  4513. <tbody>
  4514. <tr>
  4515. <td>
  4516. <code>controller</code></br>
  4517. <em>
  4518. string
  4519. </em>
  4520. </td>
  4521. <td>
  4522. <em>(Optional)</em>
  4523. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  4524. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  4525. </td>
  4526. </tr>
  4527. <tr>
  4528. <td>
  4529. <code>provider</code></br>
  4530. <em>
  4531. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  4532. SecretStoreProvider
  4533. </a>
  4534. </em>
  4535. </td>
  4536. <td>
  4537. <p>Used to configure the provider. Only one provider may be set</p>
  4538. </td>
  4539. </tr>
  4540. <tr>
  4541. <td>
  4542. <code>retrySettings</code></br>
  4543. <em>
  4544. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  4545. SecretStoreRetrySettings
  4546. </a>
  4547. </em>
  4548. </td>
  4549. <td>
  4550. <em>(Optional)</em>
  4551. <p>Used to configure http retries if failed</p>
  4552. </td>
  4553. </tr>
  4554. <tr>
  4555. <td>
  4556. <code>refreshInterval</code></br>
  4557. <em>
  4558. int
  4559. </em>
  4560. </td>
  4561. <td>
  4562. <em>(Optional)</em>
  4563. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  4564. </td>
  4565. </tr>
  4566. </tbody>
  4567. </table>
  4568. <h3 id="external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus
  4569. </h3>
  4570. <p>
  4571. (<em>Appears on:</em>
  4572. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  4573. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  4574. </p>
  4575. <p>
  4576. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  4577. </p>
  4578. <table>
  4579. <thead>
  4580. <tr>
  4581. <th>Field</th>
  4582. <th>Description</th>
  4583. </tr>
  4584. </thead>
  4585. <tbody>
  4586. <tr>
  4587. <td>
  4588. <code>conditions</code></br>
  4589. <em>
  4590. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">
  4591. []SecretStoreStatusCondition
  4592. </a>
  4593. </em>
  4594. </td>
  4595. <td>
  4596. <em>(Optional)</em>
  4597. </td>
  4598. </tr>
  4599. </tbody>
  4600. </table>
  4601. <h3 id="external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition
  4602. </h3>
  4603. <p>
  4604. (<em>Appears on:</em>
  4605. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  4606. </p>
  4607. <p>
  4608. </p>
  4609. <table>
  4610. <thead>
  4611. <tr>
  4612. <th>Field</th>
  4613. <th>Description</th>
  4614. </tr>
  4615. </thead>
  4616. <tbody>
  4617. <tr>
  4618. <td>
  4619. <code>type</code></br>
  4620. <em>
  4621. <a href="#external-secrets.io/v1beta1.SecretStoreConditionType">
  4622. SecretStoreConditionType
  4623. </a>
  4624. </em>
  4625. </td>
  4626. <td>
  4627. </td>
  4628. </tr>
  4629. <tr>
  4630. <td>
  4631. <code>status</code></br>
  4632. <em>
  4633. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  4634. Kubernetes core/v1.ConditionStatus
  4635. </a>
  4636. </em>
  4637. </td>
  4638. <td>
  4639. </td>
  4640. </tr>
  4641. <tr>
  4642. <td>
  4643. <code>reason</code></br>
  4644. <em>
  4645. string
  4646. </em>
  4647. </td>
  4648. <td>
  4649. <em>(Optional)</em>
  4650. </td>
  4651. </tr>
  4652. <tr>
  4653. <td>
  4654. <code>message</code></br>
  4655. <em>
  4656. string
  4657. </em>
  4658. </td>
  4659. <td>
  4660. <em>(Optional)</em>
  4661. </td>
  4662. </tr>
  4663. <tr>
  4664. <td>
  4665. <code>lastTransitionTime</code></br>
  4666. <em>
  4667. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  4668. Kubernetes meta/v1.Time
  4669. </a>
  4670. </em>
  4671. </td>
  4672. <td>
  4673. <em>(Optional)</em>
  4674. </td>
  4675. </tr>
  4676. </tbody>
  4677. </table>
  4678. <h3 id="external-secrets.io/v1beta1.SecretsClient">SecretsClient
  4679. </h3>
  4680. <p>
  4681. <p>SecretsClient provides access to secrets.</p>
  4682. </p>
  4683. <h3 id="external-secrets.io/v1beta1.SenhaseguraAuth">SenhaseguraAuth
  4684. </h3>
  4685. <p>
  4686. (<em>Appears on:</em>
  4687. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  4688. </p>
  4689. <p>
  4690. <pre><code>SenhaseguraAuth tells the controller how to do auth in senhasegura
  4691. </code></pre>
  4692. </p>
  4693. <table>
  4694. <thead>
  4695. <tr>
  4696. <th>Field</th>
  4697. <th>Description</th>
  4698. </tr>
  4699. </thead>
  4700. <tbody>
  4701. <tr>
  4702. <td>
  4703. <code>clientId</code></br>
  4704. <em>
  4705. string
  4706. </em>
  4707. </td>
  4708. <td>
  4709. </td>
  4710. </tr>
  4711. <tr>
  4712. <td>
  4713. <code>clientSecretSecretRef</code></br>
  4714. <em>
  4715. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4716. </em>
  4717. </td>
  4718. <td>
  4719. </td>
  4720. </tr>
  4721. </tbody>
  4722. </table>
  4723. <h3 id="external-secrets.io/v1beta1.SenhaseguraModuleType">SenhaseguraModuleType
  4724. (<code>string</code> alias)</p></h3>
  4725. <p>
  4726. (<em>Appears on:</em>
  4727. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  4728. </p>
  4729. <p>
  4730. <pre><code>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets
  4731. </code></pre>
  4732. </p>
  4733. <table>
  4734. <thead>
  4735. <tr>
  4736. <th>Value</th>
  4737. <th>Description</th>
  4738. </tr>
  4739. </thead>
  4740. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  4741. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  4742. see: https://senhasegura.com/devops
  4743. </code></pre>
  4744. </td>
  4745. </tr></tbody>
  4746. </table>
  4747. <h3 id="external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider
  4748. </h3>
  4749. <p>
  4750. (<em>Appears on:</em>
  4751. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4752. </p>
  4753. <p>
  4754. <pre><code>SenhaseguraProvider setup a store to sync secrets with senhasegura
  4755. </code></pre>
  4756. </p>
  4757. <table>
  4758. <thead>
  4759. <tr>
  4760. <th>Field</th>
  4761. <th>Description</th>
  4762. </tr>
  4763. </thead>
  4764. <tbody>
  4765. <tr>
  4766. <td>
  4767. <code>url</code></br>
  4768. <em>
  4769. string
  4770. </em>
  4771. </td>
  4772. <td>
  4773. <p>URL of senhasegura</p>
  4774. </td>
  4775. </tr>
  4776. <tr>
  4777. <td>
  4778. <code>module</code></br>
  4779. <em>
  4780. <a href="#external-secrets.io/v1beta1.SenhaseguraModuleType">
  4781. SenhaseguraModuleType
  4782. </a>
  4783. </em>
  4784. </td>
  4785. <td>
  4786. <p>Module defines which senhasegura module should be used to get secrets</p>
  4787. </td>
  4788. </tr>
  4789. <tr>
  4790. <td>
  4791. <code>auth</code></br>
  4792. <em>
  4793. <a href="#external-secrets.io/v1beta1.SenhaseguraAuth">
  4794. SenhaseguraAuth
  4795. </a>
  4796. </em>
  4797. </td>
  4798. <td>
  4799. <p>Auth defines parameters to authenticate in senhasegura</p>
  4800. </td>
  4801. </tr>
  4802. <tr>
  4803. <td>
  4804. <code>ignoreSslCertificate</code></br>
  4805. <em>
  4806. bool
  4807. </em>
  4808. </td>
  4809. <td>
  4810. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  4811. </td>
  4812. </tr>
  4813. </tbody>
  4814. </table>
  4815. <h3 id="external-secrets.io/v1beta1.TemplateEngineVersion">TemplateEngineVersion
  4816. (<code>string</code> alias)</p></h3>
  4817. <p>
  4818. (<em>Appears on:</em>
  4819. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  4820. </p>
  4821. <p>
  4822. </p>
  4823. <table>
  4824. <thead>
  4825. <tr>
  4826. <th>Value</th>
  4827. <th>Description</th>
  4828. </tr>
  4829. </thead>
  4830. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  4831. <td></td>
  4832. </tr><tr><td><p>&#34;v2&#34;</p></td>
  4833. <td></td>
  4834. </tr></tbody>
  4835. </table>
  4836. <h3 id="external-secrets.io/v1beta1.TemplateFrom">TemplateFrom
  4837. </h3>
  4838. <p>
  4839. (<em>Appears on:</em>
  4840. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  4841. </p>
  4842. <p>
  4843. </p>
  4844. <table>
  4845. <thead>
  4846. <tr>
  4847. <th>Field</th>
  4848. <th>Description</th>
  4849. </tr>
  4850. </thead>
  4851. <tbody>
  4852. <tr>
  4853. <td>
  4854. <code>configMap</code></br>
  4855. <em>
  4856. <a href="#external-secrets.io/v1beta1.TemplateRef">
  4857. TemplateRef
  4858. </a>
  4859. </em>
  4860. </td>
  4861. <td>
  4862. </td>
  4863. </tr>
  4864. <tr>
  4865. <td>
  4866. <code>secret</code></br>
  4867. <em>
  4868. <a href="#external-secrets.io/v1beta1.TemplateRef">
  4869. TemplateRef
  4870. </a>
  4871. </em>
  4872. </td>
  4873. <td>
  4874. </td>
  4875. </tr>
  4876. </tbody>
  4877. </table>
  4878. <h3 id="external-secrets.io/v1beta1.TemplateRef">TemplateRef
  4879. </h3>
  4880. <p>
  4881. (<em>Appears on:</em>
  4882. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  4883. </p>
  4884. <p>
  4885. </p>
  4886. <table>
  4887. <thead>
  4888. <tr>
  4889. <th>Field</th>
  4890. <th>Description</th>
  4891. </tr>
  4892. </thead>
  4893. <tbody>
  4894. <tr>
  4895. <td>
  4896. <code>name</code></br>
  4897. <em>
  4898. string
  4899. </em>
  4900. </td>
  4901. <td>
  4902. </td>
  4903. </tr>
  4904. <tr>
  4905. <td>
  4906. <code>items</code></br>
  4907. <em>
  4908. <a href="#external-secrets.io/v1beta1.TemplateRefItem">
  4909. []TemplateRefItem
  4910. </a>
  4911. </em>
  4912. </td>
  4913. <td>
  4914. </td>
  4915. </tr>
  4916. </tbody>
  4917. </table>
  4918. <h3 id="external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem
  4919. </h3>
  4920. <p>
  4921. (<em>Appears on:</em>
  4922. <a href="#external-secrets.io/v1beta1.TemplateRef">TemplateRef</a>)
  4923. </p>
  4924. <p>
  4925. </p>
  4926. <table>
  4927. <thead>
  4928. <tr>
  4929. <th>Field</th>
  4930. <th>Description</th>
  4931. </tr>
  4932. </thead>
  4933. <tbody>
  4934. <tr>
  4935. <td>
  4936. <code>key</code></br>
  4937. <em>
  4938. string
  4939. </em>
  4940. </td>
  4941. <td>
  4942. </td>
  4943. </tr>
  4944. </tbody>
  4945. </table>
  4946. <h3 id="external-secrets.io/v1beta1.TokenAuth">TokenAuth
  4947. </h3>
  4948. <p>
  4949. (<em>Appears on:</em>
  4950. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  4951. </p>
  4952. <p>
  4953. </p>
  4954. <table>
  4955. <thead>
  4956. <tr>
  4957. <th>Field</th>
  4958. <th>Description</th>
  4959. </tr>
  4960. </thead>
  4961. <tbody>
  4962. <tr>
  4963. <td>
  4964. <code>bearerToken</code></br>
  4965. <em>
  4966. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4967. </em>
  4968. </td>
  4969. <td>
  4970. </td>
  4971. </tr>
  4972. </tbody>
  4973. </table>
  4974. <h3 id="external-secrets.io/v1beta1.ValidationResult">ValidationResult
  4975. (<code>byte</code> alias)</p></h3>
  4976. <p>
  4977. </p>
  4978. <table>
  4979. <thead>
  4980. <tr>
  4981. <th>Value</th>
  4982. <th>Description</th>
  4983. </tr>
  4984. </thead>
  4985. <tbody><tr><td><p>2</p></td>
  4986. <td><p>Error indicates that there is a misconfiguration.</p>
  4987. </td>
  4988. </tr><tr><td><p>0</p></td>
  4989. <td><p>Ready indicates that the client is confgured correctly
  4990. and can be used.</p>
  4991. </td>
  4992. </tr><tr><td><p>1</p></td>
  4993. <td><p>Unknown indicates that the client can be used
  4994. but information is missing and it can not be validated.</p>
  4995. </td>
  4996. </tr></tbody>
  4997. </table>
  4998. <h3 id="external-secrets.io/v1beta1.VaultAppRole">VaultAppRole
  4999. </h3>
  5000. <p>
  5001. (<em>Appears on:</em>
  5002. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5003. </p>
  5004. <p>
  5005. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  5006. with the role and secret stored in a Kubernetes Secret resource.</p>
  5007. </p>
  5008. <table>
  5009. <thead>
  5010. <tr>
  5011. <th>Field</th>
  5012. <th>Description</th>
  5013. </tr>
  5014. </thead>
  5015. <tbody>
  5016. <tr>
  5017. <td>
  5018. <code>path</code></br>
  5019. <em>
  5020. string
  5021. </em>
  5022. </td>
  5023. <td>
  5024. <p>Path where the App Role authentication backend is mounted
  5025. in Vault, e.g: &ldquo;approle&rdquo;</p>
  5026. </td>
  5027. </tr>
  5028. <tr>
  5029. <td>
  5030. <code>roleId</code></br>
  5031. <em>
  5032. string
  5033. </em>
  5034. </td>
  5035. <td>
  5036. <p>RoleID configured in the App Role authentication backend when setting
  5037. up the authentication backend in Vault.</p>
  5038. </td>
  5039. </tr>
  5040. <tr>
  5041. <td>
  5042. <code>secretRef</code></br>
  5043. <em>
  5044. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5045. </em>
  5046. </td>
  5047. <td>
  5048. <p>Reference to a key in a Secret that contains the App Role secret used
  5049. to authenticate with Vault.
  5050. The <code>key</code> field must be specified and denotes which entry within the Secret
  5051. resource is used as the app role secret.</p>
  5052. </td>
  5053. </tr>
  5054. </tbody>
  5055. </table>
  5056. <h3 id="external-secrets.io/v1beta1.VaultAuth">VaultAuth
  5057. </h3>
  5058. <p>
  5059. (<em>Appears on:</em>
  5060. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  5061. </p>
  5062. <p>
  5063. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  5064. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>jwt</code> or <code>cert</code>
  5065. can be specified.</p>
  5066. </p>
  5067. <table>
  5068. <thead>
  5069. <tr>
  5070. <th>Field</th>
  5071. <th>Description</th>
  5072. </tr>
  5073. </thead>
  5074. <tbody>
  5075. <tr>
  5076. <td>
  5077. <code>tokenSecretRef</code></br>
  5078. <em>
  5079. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5080. </em>
  5081. </td>
  5082. <td>
  5083. <em>(Optional)</em>
  5084. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  5085. </td>
  5086. </tr>
  5087. <tr>
  5088. <td>
  5089. <code>appRole</code></br>
  5090. <em>
  5091. <a href="#external-secrets.io/v1beta1.VaultAppRole">
  5092. VaultAppRole
  5093. </a>
  5094. </em>
  5095. </td>
  5096. <td>
  5097. <em>(Optional)</em>
  5098. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  5099. with the role and secret stored in a Kubernetes Secret resource.</p>
  5100. </td>
  5101. </tr>
  5102. <tr>
  5103. <td>
  5104. <code>kubernetes</code></br>
  5105. <em>
  5106. <a href="#external-secrets.io/v1beta1.VaultKubernetesAuth">
  5107. VaultKubernetesAuth
  5108. </a>
  5109. </em>
  5110. </td>
  5111. <td>
  5112. <em>(Optional)</em>
  5113. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  5114. token stored in the named Secret resource to the Vault server.</p>
  5115. </td>
  5116. </tr>
  5117. <tr>
  5118. <td>
  5119. <code>ldap</code></br>
  5120. <em>
  5121. <a href="#external-secrets.io/v1beta1.VaultLdapAuth">
  5122. VaultLdapAuth
  5123. </a>
  5124. </em>
  5125. </td>
  5126. <td>
  5127. <em>(Optional)</em>
  5128. <p>Ldap authenticates with Vault by passing username/password pair using
  5129. the LDAP authentication method</p>
  5130. </td>
  5131. </tr>
  5132. <tr>
  5133. <td>
  5134. <code>jwt</code></br>
  5135. <em>
  5136. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">
  5137. VaultJwtAuth
  5138. </a>
  5139. </em>
  5140. </td>
  5141. <td>
  5142. <em>(Optional)</em>
  5143. <p>Jwt authenticates with Vault by passing role and JWT token using the
  5144. JWT/OIDC authentication method</p>
  5145. </td>
  5146. </tr>
  5147. <tr>
  5148. <td>
  5149. <code>cert</code></br>
  5150. <em>
  5151. <a href="#external-secrets.io/v1beta1.VaultCertAuth">
  5152. VaultCertAuth
  5153. </a>
  5154. </em>
  5155. </td>
  5156. <td>
  5157. <em>(Optional)</em>
  5158. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  5159. Cert authentication method</p>
  5160. </td>
  5161. </tr>
  5162. </tbody>
  5163. </table>
  5164. <h3 id="external-secrets.io/v1beta1.VaultCertAuth">VaultCertAuth
  5165. </h3>
  5166. <p>
  5167. (<em>Appears on:</em>
  5168. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5169. </p>
  5170. <p>
  5171. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  5172. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  5173. </p>
  5174. <table>
  5175. <thead>
  5176. <tr>
  5177. <th>Field</th>
  5178. <th>Description</th>
  5179. </tr>
  5180. </thead>
  5181. <tbody>
  5182. <tr>
  5183. <td>
  5184. <code>clientCert</code></br>
  5185. <em>
  5186. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5187. </em>
  5188. </td>
  5189. <td>
  5190. <em>(Optional)</em>
  5191. <p>ClientCert is a certificate to authenticate using the Cert Vault
  5192. authentication method</p>
  5193. </td>
  5194. </tr>
  5195. <tr>
  5196. <td>
  5197. <code>secretRef</code></br>
  5198. <em>
  5199. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5200. </em>
  5201. </td>
  5202. <td>
  5203. <p>SecretRef to a key in a Secret resource containing client private key to
  5204. authenticate with Vault using the Cert authentication method</p>
  5205. </td>
  5206. </tr>
  5207. </tbody>
  5208. </table>
  5209. <h3 id="external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth
  5210. </h3>
  5211. <p>
  5212. (<em>Appears on:</em>
  5213. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5214. </p>
  5215. <p>
  5216. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  5217. method, with the role name and a token stored in a Kubernetes Secret resource or
  5218. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  5219. </p>
  5220. <table>
  5221. <thead>
  5222. <tr>
  5223. <th>Field</th>
  5224. <th>Description</th>
  5225. </tr>
  5226. </thead>
  5227. <tbody>
  5228. <tr>
  5229. <td>
  5230. <code>path</code></br>
  5231. <em>
  5232. string
  5233. </em>
  5234. </td>
  5235. <td>
  5236. <p>Path where the JWT authentication backend is mounted
  5237. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  5238. </td>
  5239. </tr>
  5240. <tr>
  5241. <td>
  5242. <code>role</code></br>
  5243. <em>
  5244. string
  5245. </em>
  5246. </td>
  5247. <td>
  5248. <em>(Optional)</em>
  5249. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  5250. authentication method</p>
  5251. </td>
  5252. </tr>
  5253. <tr>
  5254. <td>
  5255. <code>secretRef</code></br>
  5256. <em>
  5257. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5258. </em>
  5259. </td>
  5260. <td>
  5261. <em>(Optional)</em>
  5262. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  5263. authenticate with Vault using the JWT/OIDC authentication method.</p>
  5264. </td>
  5265. </tr>
  5266. <tr>
  5267. <td>
  5268. <code>kubernetesServiceAccountToken</code></br>
  5269. <em>
  5270. <a href="#external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">
  5271. VaultKubernetesServiceAccountTokenAuth
  5272. </a>
  5273. </em>
  5274. </td>
  5275. <td>
  5276. <em>(Optional)</em>
  5277. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  5278. a token for with the <code>TokenRequest</code> API.</p>
  5279. </td>
  5280. </tr>
  5281. </tbody>
  5282. </table>
  5283. <h3 id="external-secrets.io/v1beta1.VaultKVStoreVersion">VaultKVStoreVersion
  5284. (<code>string</code> alias)</p></h3>
  5285. <p>
  5286. (<em>Appears on:</em>
  5287. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  5288. </p>
  5289. <p>
  5290. </p>
  5291. <table>
  5292. <thead>
  5293. <tr>
  5294. <th>Value</th>
  5295. <th>Description</th>
  5296. </tr>
  5297. </thead>
  5298. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  5299. <td></td>
  5300. </tr><tr><td><p>&#34;v2&#34;</p></td>
  5301. <td></td>
  5302. </tr></tbody>
  5303. </table>
  5304. <h3 id="external-secrets.io/v1beta1.VaultKubernetesAuth">VaultKubernetesAuth
  5305. </h3>
  5306. <p>
  5307. (<em>Appears on:</em>
  5308. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5309. </p>
  5310. <p>
  5311. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  5312. a Secret.</p>
  5313. </p>
  5314. <table>
  5315. <thead>
  5316. <tr>
  5317. <th>Field</th>
  5318. <th>Description</th>
  5319. </tr>
  5320. </thead>
  5321. <tbody>
  5322. <tr>
  5323. <td>
  5324. <code>mountPath</code></br>
  5325. <em>
  5326. string
  5327. </em>
  5328. </td>
  5329. <td>
  5330. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  5331. &ldquo;kubernetes&rdquo;</p>
  5332. </td>
  5333. </tr>
  5334. <tr>
  5335. <td>
  5336. <code>serviceAccountRef</code></br>
  5337. <em>
  5338. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  5339. </em>
  5340. </td>
  5341. <td>
  5342. <em>(Optional)</em>
  5343. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  5344. If the service account is specified, the service account secret token JWT will be used
  5345. for authenticating with Vault. If the service account selector is not supplied,
  5346. the secretRef will be used instead.</p>
  5347. </td>
  5348. </tr>
  5349. <tr>
  5350. <td>
  5351. <code>secretRef</code></br>
  5352. <em>
  5353. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5354. </em>
  5355. </td>
  5356. <td>
  5357. <em>(Optional)</em>
  5358. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  5359. for authenticating with Vault. If a name is specified without a key,
  5360. <code>token</code> is the default. If one is not specified, the one bound to
  5361. the controller will be used.</p>
  5362. </td>
  5363. </tr>
  5364. <tr>
  5365. <td>
  5366. <code>role</code></br>
  5367. <em>
  5368. string
  5369. </em>
  5370. </td>
  5371. <td>
  5372. <p>A required field containing the Vault Role to assume. A Role binds a
  5373. Kubernetes ServiceAccount with a set of Vault policies.</p>
  5374. </td>
  5375. </tr>
  5376. </tbody>
  5377. </table>
  5378. <h3 id="external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  5379. </h3>
  5380. <p>
  5381. (<em>Appears on:</em>
  5382. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth</a>)
  5383. </p>
  5384. <p>
  5385. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  5386. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  5387. </p>
  5388. <table>
  5389. <thead>
  5390. <tr>
  5391. <th>Field</th>
  5392. <th>Description</th>
  5393. </tr>
  5394. </thead>
  5395. <tbody>
  5396. <tr>
  5397. <td>
  5398. <code>serviceAccountRef</code></br>
  5399. <em>
  5400. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  5401. </em>
  5402. </td>
  5403. <td>
  5404. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  5405. </td>
  5406. </tr>
  5407. <tr>
  5408. <td>
  5409. <code>audiences</code></br>
  5410. <em>
  5411. []string
  5412. </em>
  5413. </td>
  5414. <td>
  5415. <em>(Optional)</em>
  5416. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  5417. account token for the service account referenced by <code>serviceAccountRef</code>.
  5418. Defaults to a single audience <code>vault</code> it not specified.
  5419. Deprecated: use serviceAccountRef.Audiences instead</p>
  5420. </td>
  5421. </tr>
  5422. <tr>
  5423. <td>
  5424. <code>expirationSeconds</code></br>
  5425. <em>
  5426. int64
  5427. </em>
  5428. </td>
  5429. <td>
  5430. <em>(Optional)</em>
  5431. <p>Optional expiration time in seconds that will be used to request a temporary
  5432. Kubernetes service account token for the service account referenced by
  5433. <code>serviceAccountRef</code>.
  5434. Deprecated: this will be removed in the future.
  5435. Defaults to 10 minutes.</p>
  5436. </td>
  5437. </tr>
  5438. </tbody>
  5439. </table>
  5440. <h3 id="external-secrets.io/v1beta1.VaultLdapAuth">VaultLdapAuth
  5441. </h3>
  5442. <p>
  5443. (<em>Appears on:</em>
  5444. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5445. </p>
  5446. <p>
  5447. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  5448. with the username and password stored in a Kubernetes Secret resource.</p>
  5449. </p>
  5450. <table>
  5451. <thead>
  5452. <tr>
  5453. <th>Field</th>
  5454. <th>Description</th>
  5455. </tr>
  5456. </thead>
  5457. <tbody>
  5458. <tr>
  5459. <td>
  5460. <code>path</code></br>
  5461. <em>
  5462. string
  5463. </em>
  5464. </td>
  5465. <td>
  5466. <p>Path where the LDAP authentication backend is mounted
  5467. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  5468. </td>
  5469. </tr>
  5470. <tr>
  5471. <td>
  5472. <code>username</code></br>
  5473. <em>
  5474. string
  5475. </em>
  5476. </td>
  5477. <td>
  5478. <p>Username is a LDAP user name used to authenticate using the LDAP Vault
  5479. authentication method</p>
  5480. </td>
  5481. </tr>
  5482. <tr>
  5483. <td>
  5484. <code>secretRef</code></br>
  5485. <em>
  5486. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5487. </em>
  5488. </td>
  5489. <td>
  5490. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  5491. user used to authenticate with Vault using the LDAP authentication
  5492. method</p>
  5493. </td>
  5494. </tr>
  5495. </tbody>
  5496. </table>
  5497. <h3 id="external-secrets.io/v1beta1.VaultProvider">VaultProvider
  5498. </h3>
  5499. <p>
  5500. (<em>Appears on:</em>
  5501. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5502. </p>
  5503. <p>
  5504. <p>Configures an store to sync secrets using a HashiCorp Vault
  5505. KV backend.</p>
  5506. </p>
  5507. <table>
  5508. <thead>
  5509. <tr>
  5510. <th>Field</th>
  5511. <th>Description</th>
  5512. </tr>
  5513. </thead>
  5514. <tbody>
  5515. <tr>
  5516. <td>
  5517. <code>auth</code></br>
  5518. <em>
  5519. <a href="#external-secrets.io/v1beta1.VaultAuth">
  5520. VaultAuth
  5521. </a>
  5522. </em>
  5523. </td>
  5524. <td>
  5525. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  5526. </td>
  5527. </tr>
  5528. <tr>
  5529. <td>
  5530. <code>server</code></br>
  5531. <em>
  5532. string
  5533. </em>
  5534. </td>
  5535. <td>
  5536. <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>
  5537. </td>
  5538. </tr>
  5539. <tr>
  5540. <td>
  5541. <code>path</code></br>
  5542. <em>
  5543. string
  5544. </em>
  5545. </td>
  5546. <td>
  5547. <em>(Optional)</em>
  5548. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  5549. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  5550. for fetching secrets from Vault is optional and will be appended
  5551. if not present in specified path.</p>
  5552. </td>
  5553. </tr>
  5554. <tr>
  5555. <td>
  5556. <code>version</code></br>
  5557. <em>
  5558. <a href="#external-secrets.io/v1beta1.VaultKVStoreVersion">
  5559. VaultKVStoreVersion
  5560. </a>
  5561. </em>
  5562. </td>
  5563. <td>
  5564. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  5565. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  5566. </td>
  5567. </tr>
  5568. <tr>
  5569. <td>
  5570. <code>namespace</code></br>
  5571. <em>
  5572. string
  5573. </em>
  5574. </td>
  5575. <td>
  5576. <em>(Optional)</em>
  5577. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  5578. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  5579. 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>
  5580. </td>
  5581. </tr>
  5582. <tr>
  5583. <td>
  5584. <code>caBundle</code></br>
  5585. <em>
  5586. []byte
  5587. </em>
  5588. </td>
  5589. <td>
  5590. <em>(Optional)</em>
  5591. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  5592. if the Server URL is using HTTPS protocol. This parameter is ignored for
  5593. plain HTTP protocol connection. If not set the system root certificates
  5594. are used to validate the TLS connection.</p>
  5595. </td>
  5596. </tr>
  5597. <tr>
  5598. <td>
  5599. <code>caProvider</code></br>
  5600. <em>
  5601. <a href="#external-secrets.io/v1beta1.CAProvider">
  5602. CAProvider
  5603. </a>
  5604. </em>
  5605. </td>
  5606. <td>
  5607. <em>(Optional)</em>
  5608. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  5609. </td>
  5610. </tr>
  5611. <tr>
  5612. <td>
  5613. <code>readYourWrites</code></br>
  5614. <em>
  5615. bool
  5616. </em>
  5617. </td>
  5618. <td>
  5619. <em>(Optional)</em>
  5620. <p>ReadYourWrites ensures isolated read-after-write semantics by
  5621. providing discovered cluster replication states in each request.
  5622. More information about eventual consistency in Vault can be found here
  5623. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  5624. </td>
  5625. </tr>
  5626. <tr>
  5627. <td>
  5628. <code>forwardInconsistent</code></br>
  5629. <em>
  5630. bool
  5631. </em>
  5632. </td>
  5633. <td>
  5634. <em>(Optional)</em>
  5635. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  5636. leader instead of simply retrying within a loop. This can increase performance if
  5637. the option is enabled serverside.
  5638. <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>
  5639. </td>
  5640. </tr>
  5641. </tbody>
  5642. </table>
  5643. <h3 id="external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider
  5644. </h3>
  5645. <p>
  5646. (<em>Appears on:</em>
  5647. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  5648. </p>
  5649. <p>
  5650. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  5651. </p>
  5652. <table>
  5653. <thead>
  5654. <tr>
  5655. <th>Field</th>
  5656. <th>Description</th>
  5657. </tr>
  5658. </thead>
  5659. <tbody>
  5660. <tr>
  5661. <td>
  5662. <code>type</code></br>
  5663. <em>
  5664. <a href="#external-secrets.io/v1beta1.WebhookCAProviderType">
  5665. WebhookCAProviderType
  5666. </a>
  5667. </em>
  5668. </td>
  5669. <td>
  5670. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  5671. </td>
  5672. </tr>
  5673. <tr>
  5674. <td>
  5675. <code>name</code></br>
  5676. <em>
  5677. string
  5678. </em>
  5679. </td>
  5680. <td>
  5681. <p>The name of the object located at the provider type.</p>
  5682. </td>
  5683. </tr>
  5684. <tr>
  5685. <td>
  5686. <code>key</code></br>
  5687. <em>
  5688. string
  5689. </em>
  5690. </td>
  5691. <td>
  5692. <p>The key the value inside of the provider type to use, only used with &ldquo;Secret&rdquo; type</p>
  5693. </td>
  5694. </tr>
  5695. <tr>
  5696. <td>
  5697. <code>namespace</code></br>
  5698. <em>
  5699. string
  5700. </em>
  5701. </td>
  5702. <td>
  5703. <em>(Optional)</em>
  5704. <p>The namespace the Provider type is in.</p>
  5705. </td>
  5706. </tr>
  5707. </tbody>
  5708. </table>
  5709. <h3 id="external-secrets.io/v1beta1.WebhookCAProviderType">WebhookCAProviderType
  5710. (<code>string</code> alias)</p></h3>
  5711. <p>
  5712. (<em>Appears on:</em>
  5713. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider</a>)
  5714. </p>
  5715. <p>
  5716. </p>
  5717. <table>
  5718. <thead>
  5719. <tr>
  5720. <th>Value</th>
  5721. <th>Description</th>
  5722. </tr>
  5723. </thead>
  5724. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  5725. <td></td>
  5726. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  5727. <td></td>
  5728. </tr></tbody>
  5729. </table>
  5730. <h3 id="external-secrets.io/v1beta1.WebhookProvider">WebhookProvider
  5731. </h3>
  5732. <p>
  5733. (<em>Appears on:</em>
  5734. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5735. </p>
  5736. <p>
  5737. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  5738. </p>
  5739. <table>
  5740. <thead>
  5741. <tr>
  5742. <th>Field</th>
  5743. <th>Description</th>
  5744. </tr>
  5745. </thead>
  5746. <tbody>
  5747. <tr>
  5748. <td>
  5749. <code>method</code></br>
  5750. <em>
  5751. string
  5752. </em>
  5753. </td>
  5754. <td>
  5755. <p>Webhook Method</p>
  5756. </td>
  5757. </tr>
  5758. <tr>
  5759. <td>
  5760. <code>url</code></br>
  5761. <em>
  5762. string
  5763. </em>
  5764. </td>
  5765. <td>
  5766. <p>Webhook url to call</p>
  5767. </td>
  5768. </tr>
  5769. <tr>
  5770. <td>
  5771. <code>headers</code></br>
  5772. <em>
  5773. map[string]string
  5774. </em>
  5775. </td>
  5776. <td>
  5777. <em>(Optional)</em>
  5778. <p>Headers</p>
  5779. </td>
  5780. </tr>
  5781. <tr>
  5782. <td>
  5783. <code>body</code></br>
  5784. <em>
  5785. string
  5786. </em>
  5787. </td>
  5788. <td>
  5789. <em>(Optional)</em>
  5790. <p>Body</p>
  5791. </td>
  5792. </tr>
  5793. <tr>
  5794. <td>
  5795. <code>timeout</code></br>
  5796. <em>
  5797. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  5798. Kubernetes meta/v1.Duration
  5799. </a>
  5800. </em>
  5801. </td>
  5802. <td>
  5803. <em>(Optional)</em>
  5804. <p>Timeout</p>
  5805. </td>
  5806. </tr>
  5807. <tr>
  5808. <td>
  5809. <code>result</code></br>
  5810. <em>
  5811. <a href="#external-secrets.io/v1beta1.WebhookResult">
  5812. WebhookResult
  5813. </a>
  5814. </em>
  5815. </td>
  5816. <td>
  5817. <p>Result formatting</p>
  5818. </td>
  5819. </tr>
  5820. <tr>
  5821. <td>
  5822. <code>secrets</code></br>
  5823. <em>
  5824. <a href="#external-secrets.io/v1beta1.WebhookSecret">
  5825. []WebhookSecret
  5826. </a>
  5827. </em>
  5828. </td>
  5829. <td>
  5830. <em>(Optional)</em>
  5831. <p>Secrets to fill in templates
  5832. These secrets will be passed to the templating function as key value pairs under the given name</p>
  5833. </td>
  5834. </tr>
  5835. <tr>
  5836. <td>
  5837. <code>caBundle</code></br>
  5838. <em>
  5839. []byte
  5840. </em>
  5841. </td>
  5842. <td>
  5843. <em>(Optional)</em>
  5844. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  5845. if the Server URL is using HTTPS protocol. This parameter is ignored for
  5846. plain HTTP protocol connection. If not set the system root certificates
  5847. are used to validate the TLS connection.</p>
  5848. </td>
  5849. </tr>
  5850. <tr>
  5851. <td>
  5852. <code>caProvider</code></br>
  5853. <em>
  5854. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">
  5855. WebhookCAProvider
  5856. </a>
  5857. </em>
  5858. </td>
  5859. <td>
  5860. <em>(Optional)</em>
  5861. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  5862. </td>
  5863. </tr>
  5864. </tbody>
  5865. </table>
  5866. <h3 id="external-secrets.io/v1beta1.WebhookResult">WebhookResult
  5867. </h3>
  5868. <p>
  5869. (<em>Appears on:</em>
  5870. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  5871. </p>
  5872. <p>
  5873. </p>
  5874. <table>
  5875. <thead>
  5876. <tr>
  5877. <th>Field</th>
  5878. <th>Description</th>
  5879. </tr>
  5880. </thead>
  5881. <tbody>
  5882. <tr>
  5883. <td>
  5884. <code>jsonPath</code></br>
  5885. <em>
  5886. string
  5887. </em>
  5888. </td>
  5889. <td>
  5890. <em>(Optional)</em>
  5891. <p>Json path of return value</p>
  5892. </td>
  5893. </tr>
  5894. </tbody>
  5895. </table>
  5896. <h3 id="external-secrets.io/v1beta1.WebhookSecret">WebhookSecret
  5897. </h3>
  5898. <p>
  5899. (<em>Appears on:</em>
  5900. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  5901. </p>
  5902. <p>
  5903. </p>
  5904. <table>
  5905. <thead>
  5906. <tr>
  5907. <th>Field</th>
  5908. <th>Description</th>
  5909. </tr>
  5910. </thead>
  5911. <tbody>
  5912. <tr>
  5913. <td>
  5914. <code>name</code></br>
  5915. <em>
  5916. string
  5917. </em>
  5918. </td>
  5919. <td>
  5920. <p>Name of this secret in templates</p>
  5921. </td>
  5922. </tr>
  5923. <tr>
  5924. <td>
  5925. <code>secretRef</code></br>
  5926. <em>
  5927. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5928. </em>
  5929. </td>
  5930. <td>
  5931. <p>Secret ref to fill in credentials</p>
  5932. </td>
  5933. </tr>
  5934. </tbody>
  5935. </table>
  5936. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  5937. </h3>
  5938. <p>
  5939. (<em>Appears on:</em>
  5940. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  5941. </p>
  5942. <p>
  5943. </p>
  5944. <table>
  5945. <thead>
  5946. <tr>
  5947. <th>Field</th>
  5948. <th>Description</th>
  5949. </tr>
  5950. </thead>
  5951. <tbody>
  5952. <tr>
  5953. <td>
  5954. <code>authorizedKeySecretRef</code></br>
  5955. <em>
  5956. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5957. </em>
  5958. </td>
  5959. <td>
  5960. <em>(Optional)</em>
  5961. <p>The authorized key used for authentication</p>
  5962. </td>
  5963. </tr>
  5964. </tbody>
  5965. </table>
  5966. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  5967. </h3>
  5968. <p>
  5969. (<em>Appears on:</em>
  5970. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  5971. </p>
  5972. <p>
  5973. </p>
  5974. <table>
  5975. <thead>
  5976. <tr>
  5977. <th>Field</th>
  5978. <th>Description</th>
  5979. </tr>
  5980. </thead>
  5981. <tbody>
  5982. <tr>
  5983. <td>
  5984. <code>certSecretRef</code></br>
  5985. <em>
  5986. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5987. </em>
  5988. </td>
  5989. <td>
  5990. </td>
  5991. </tr>
  5992. </tbody>
  5993. </table>
  5994. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  5995. </h3>
  5996. <p>
  5997. (<em>Appears on:</em>
  5998. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5999. </p>
  6000. <p>
  6001. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  6002. </p>
  6003. <table>
  6004. <thead>
  6005. <tr>
  6006. <th>Field</th>
  6007. <th>Description</th>
  6008. </tr>
  6009. </thead>
  6010. <tbody>
  6011. <tr>
  6012. <td>
  6013. <code>apiEndpoint</code></br>
  6014. <em>
  6015. string
  6016. </em>
  6017. </td>
  6018. <td>
  6019. <em>(Optional)</em>
  6020. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  6021. </td>
  6022. </tr>
  6023. <tr>
  6024. <td>
  6025. <code>auth</code></br>
  6026. <em>
  6027. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerAuth">
  6028. YandexCertificateManagerAuth
  6029. </a>
  6030. </em>
  6031. </td>
  6032. <td>
  6033. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  6034. </td>
  6035. </tr>
  6036. <tr>
  6037. <td>
  6038. <code>caProvider</code></br>
  6039. <em>
  6040. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">
  6041. YandexCertificateManagerCAProvider
  6042. </a>
  6043. </em>
  6044. </td>
  6045. <td>
  6046. <em>(Optional)</em>
  6047. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  6048. </td>
  6049. </tr>
  6050. </tbody>
  6051. </table>
  6052. <h3 id="external-secrets.io/v1beta1.YandexLockboxAuth">YandexLockboxAuth
  6053. </h3>
  6054. <p>
  6055. (<em>Appears on:</em>
  6056. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6057. </p>
  6058. <p>
  6059. </p>
  6060. <table>
  6061. <thead>
  6062. <tr>
  6063. <th>Field</th>
  6064. <th>Description</th>
  6065. </tr>
  6066. </thead>
  6067. <tbody>
  6068. <tr>
  6069. <td>
  6070. <code>authorizedKeySecretRef</code></br>
  6071. <em>
  6072. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6073. </em>
  6074. </td>
  6075. <td>
  6076. <em>(Optional)</em>
  6077. <p>The authorized key used for authentication</p>
  6078. </td>
  6079. </tr>
  6080. </tbody>
  6081. </table>
  6082. <h3 id="external-secrets.io/v1beta1.YandexLockboxCAProvider">YandexLockboxCAProvider
  6083. </h3>
  6084. <p>
  6085. (<em>Appears on:</em>
  6086. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6087. </p>
  6088. <p>
  6089. </p>
  6090. <table>
  6091. <thead>
  6092. <tr>
  6093. <th>Field</th>
  6094. <th>Description</th>
  6095. </tr>
  6096. </thead>
  6097. <tbody>
  6098. <tr>
  6099. <td>
  6100. <code>certSecretRef</code></br>
  6101. <em>
  6102. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6103. </em>
  6104. </td>
  6105. <td>
  6106. </td>
  6107. </tr>
  6108. </tbody>
  6109. </table>
  6110. <h3 id="external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider
  6111. </h3>
  6112. <p>
  6113. (<em>Appears on:</em>
  6114. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6115. </p>
  6116. <p>
  6117. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  6118. </p>
  6119. <table>
  6120. <thead>
  6121. <tr>
  6122. <th>Field</th>
  6123. <th>Description</th>
  6124. </tr>
  6125. </thead>
  6126. <tbody>
  6127. <tr>
  6128. <td>
  6129. <code>apiEndpoint</code></br>
  6130. <em>
  6131. string
  6132. </em>
  6133. </td>
  6134. <td>
  6135. <em>(Optional)</em>
  6136. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  6137. </td>
  6138. </tr>
  6139. <tr>
  6140. <td>
  6141. <code>auth</code></br>
  6142. <em>
  6143. <a href="#external-secrets.io/v1beta1.YandexLockboxAuth">
  6144. YandexLockboxAuth
  6145. </a>
  6146. </em>
  6147. </td>
  6148. <td>
  6149. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  6150. </td>
  6151. </tr>
  6152. <tr>
  6153. <td>
  6154. <code>caProvider</code></br>
  6155. <em>
  6156. <a href="#external-secrets.io/v1beta1.YandexLockboxCAProvider">
  6157. YandexLockboxCAProvider
  6158. </a>
  6159. </em>
  6160. </td>
  6161. <td>
  6162. <em>(Optional)</em>
  6163. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  6164. </td>
  6165. </tr>
  6166. </tbody>
  6167. </table>
  6168. <hr/>
  6169. <p><em>
  6170. Generated with <code>gen-crd-api-reference-docs</code>.
  6171. </em></p>
  6172. </article>
  6173. </div>
  6174. </div>
  6175. </main>
  6176. <footer class="md-footer">
  6177. <nav class="md-footer__inner md-grid" aria-label="Footer">
  6178. <a href="../eso-blogs/" class="md-footer__link md-footer__link--prev" aria-label="Previous: Blogs" rel="prev">
  6179. <div class="md-footer__button md-icon">
  6180. <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>
  6181. </div>
  6182. <div class="md-footer__title">
  6183. <div class="md-ellipsis">
  6184. <span class="md-footer__direction">
  6185. Previous
  6186. </span>
  6187. Blogs
  6188. </div>
  6189. </div>
  6190. </a>
  6191. <a href="../contributing-devguide/" class="md-footer__link md-footer__link--next" aria-label="Next: Developer guide" rel="next">
  6192. <div class="md-footer__title">
  6193. <div class="md-ellipsis">
  6194. <span class="md-footer__direction">
  6195. Next
  6196. </span>
  6197. Developer guide
  6198. </div>
  6199. </div>
  6200. <div class="md-footer__button md-icon">
  6201. <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>
  6202. </div>
  6203. </a>
  6204. </nav>
  6205. <div class="md-footer-meta md-typeset">
  6206. <div class="md-footer-meta__inner md-grid">
  6207. <div class="md-copyright">
  6208. <div class="md-copyright__highlight">
  6209. &copy; 2022 The external-secrets Authors.<br/>
  6210. &copy; 2022 The Linux Foundation. All rights reserved.<br/><br/>
  6211. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  6212. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  6213. </div>
  6214. Made with
  6215. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  6216. Material for MkDocs
  6217. </a>
  6218. </div>
  6219. </div>
  6220. </div>
  6221. </footer>
  6222. </div>
  6223. <div class="md-dialog" data-md-component="dialog">
  6224. <div class="md-dialog__inner md-typeset"></div>
  6225. </div>
  6226. <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>
  6227. <script src="../assets/javascripts/bundle.e3b2bf44.min.js"></script>
  6228. </body>
  6229. </html>