index.html 212 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725
  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="prev" href="../generator/webhook/">
  7. <link rel="next" href="../controller-options/">
  8. <link rel="icon" href="../../pictures/eso-round-logo.svg">
  9. <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.21">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.66ac8b77.min.css">
  12. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  13. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  14. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  15. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce((e,_)=>(e<<5)-e+_.charCodeAt(0),0),__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>
  16. <script id="__analytics">function __md_analytics(){function n(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],n("js",new Date),n("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",function(){document.forms.search&&document.forms.search.query.addEventListener("blur",function(){this.value&&n("event","search",{search_term:this.value})}),document$.subscribe(function(){var a=document.forms.feedback;if(void 0!==a)for(var e of a.querySelectorAll("[type=submit]"))e.addEventListener("click",function(e){e.preventDefault();var t=document.location.pathname,e=this.getAttribute("data-md-value");n("event","feedback",{page:t,data:e}),a.firstElementChild.disabled=!0;e=a.querySelector(".md-feedback__note [data-md-value='"+e+"']");e&&(e.hidden=!1)}),a.hidden=!1}),location$.subscribe(function(e){n("config","G-QP38TD8K7V",{page_path:e.pathname})})});var e=document.createElement("script");e.async=!0,e.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",e)}</script>
  17. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  18. </head>
  19. <body dir="ltr">
  20. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  21. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  22. <label class="md-overlay" for="__drawer"></label>
  23. <div data-md-component="skip">
  24. </div>
  25. <div data-md-component="announce">
  26. </div>
  27. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  28. <aside class="md-banner md-banner--warning">
  29. <div class="md-banner__inner md-grid md-typeset">
  30. You're not viewing the latest version.
  31. <a href="../../..">
  32. <strong>Click here to go to latest.</strong>
  33. </a>
  34. </div>
  35. <script>var el=document.querySelector("[data-md-component=outdated]"),outdated=__md_get("__outdated",sessionStorage);!0===outdated&&el&&(el.hidden=!1)</script>
  36. </aside>
  37. </div>
  38. <header class="md-header" data-md-component="header">
  39. <nav class="md-header__inner md-grid" aria-label="Header">
  40. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  41. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  42. </a>
  43. <label class="md-header__button md-icon" for="__drawer">
  44. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
  45. </label>
  46. <div class="md-header__title" data-md-component="header-title">
  47. <div class="md-header__ellipsis">
  48. <div class="md-header__topic">
  49. <span class="md-ellipsis">
  50. External Secrets Operator
  51. </span>
  52. </div>
  53. <div class="md-header__topic" data-md-component="header-topic">
  54. <span class="md-ellipsis">
  55. API specification
  56. </span>
  57. </div>
  58. </div>
  59. </div>
  60. <script>var media,input,key,value,palette=__md_get("__palette");if(palette&&palette.color){"(prefers-color-scheme)"===palette.color.media&&(media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']"),palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent"));for([key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  61. <label class="md-header__button md-icon" for="__search">
  62. <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>
  63. </label>
  64. <div class="md-search" data-md-component="search" role="dialog">
  65. <label class="md-search__overlay" for="__search"></label>
  66. <div class="md-search__inner" role="search">
  67. <form class="md-search__form" name="search">
  68. <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>
  69. <label class="md-search__icon md-icon" for="__search">
  70. <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>
  71. <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>
  72. </label>
  73. <nav class="md-search__options" aria-label="Search">
  74. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  75. <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>
  76. </button>
  77. </nav>
  78. </form>
  79. <div class="md-search__output">
  80. <div class="md-search__scrollwrap" data-md-scrollfix>
  81. <div class="md-search-result" data-md-component="search-result">
  82. <div class="md-search-result__meta">
  83. Initializing search
  84. </div>
  85. <ol class="md-search-result__list" role="presentation"></ol>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. <div class="md-header__source">
  92. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  93. <div class="md-source__icon md-icon">
  94. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><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>
  95. </div>
  96. <div class="md-source__repository">
  97. External Secrets Operator
  98. </div>
  99. </a>
  100. </div>
  101. </nav>
  102. </header>
  103. <div class="md-container" data-md-component="container">
  104. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  105. <div class="md-grid">
  106. <ul class="md-tabs__list">
  107. <li class="md-tabs__item">
  108. <a href="../.." class="md-tabs__link">
  109. Introduction
  110. </a>
  111. </li>
  112. <li class="md-tabs__item md-tabs__item--active">
  113. <a href="../components/" class="md-tabs__link">
  114. API
  115. </a>
  116. </li>
  117. <li class="md-tabs__item">
  118. <a href="../../guides/introduction/" class="md-tabs__link">
  119. Guides
  120. </a>
  121. </li>
  122. <li class="md-tabs__item">
  123. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  124. Provider
  125. </a>
  126. </li>
  127. <li class="md-tabs__item">
  128. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  129. Examples
  130. </a>
  131. </li>
  132. <li class="md-tabs__item">
  133. <a href="../../contributing/devguide/" class="md-tabs__link">
  134. Community
  135. </a>
  136. </li>
  137. <li class="md-tabs__item">
  138. <a href="../../spec/" class="md-tabs__link">
  139. References
  140. </a>
  141. </li>
  142. </ul>
  143. </div>
  144. </nav>
  145. <main class="md-main" data-md-component="main">
  146. <div class="md-main__inner md-grid">
  147. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  148. <div class="md-sidebar__scrollwrap">
  149. <div class="md-sidebar__inner">
  150. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  151. <label class="md-nav__title" for="__drawer">
  152. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  153. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  154. </a>
  155. External Secrets Operator
  156. </label>
  157. <div class="md-nav__source">
  158. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  159. <div class="md-source__icon md-icon">
  160. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><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>
  161. </div>
  162. <div class="md-source__repository">
  163. External Secrets Operator
  164. </div>
  165. </a>
  166. </div>
  167. <ul class="md-nav__list" data-md-scrollfix>
  168. <li class="md-nav__item md-nav__item--nested">
  169. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  170. <div class="md-nav__link md-nav__container">
  171. <a href="../.." class="md-nav__link ">
  172. <span class="md-ellipsis">
  173. Introduction
  174. </span>
  175. </a>
  176. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
  177. <span class="md-nav__icon md-icon"></span>
  178. </label>
  179. </div>
  180. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  181. <label class="md-nav__title" for="__nav_1">
  182. <span class="md-nav__icon md-icon"></span>
  183. Introduction
  184. </label>
  185. <ul class="md-nav__list" data-md-scrollfix>
  186. <li class="md-nav__item">
  187. <a href="../../introduction/overview/" class="md-nav__link">
  188. <span class="md-ellipsis">
  189. Overview
  190. </span>
  191. </a>
  192. </li>
  193. <li class="md-nav__item">
  194. <a href="../../introduction/getting-started/" class="md-nav__link">
  195. <span class="md-ellipsis">
  196. Getting started
  197. </span>
  198. </a>
  199. </li>
  200. <li class="md-nav__item">
  201. <a href="../../introduction/faq/" class="md-nav__link">
  202. <span class="md-ellipsis">
  203. FAQ
  204. </span>
  205. </a>
  206. </li>
  207. <li class="md-nav__item">
  208. <a href="../../introduction/stability-support/" class="md-nav__link">
  209. <span class="md-ellipsis">
  210. Stability and Support
  211. </span>
  212. </a>
  213. </li>
  214. <li class="md-nav__item">
  215. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  216. <span class="md-ellipsis">
  217. Deprecation Policy
  218. </span>
  219. </a>
  220. </li>
  221. </ul>
  222. </nav>
  223. </li>
  224. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  225. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
  226. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  227. <span class="md-ellipsis">
  228. API
  229. </span>
  230. <span class="md-nav__icon md-icon"></span>
  231. </label>
  232. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
  233. <label class="md-nav__title" for="__nav_2">
  234. <span class="md-nav__icon md-icon"></span>
  235. API
  236. </label>
  237. <ul class="md-nav__list" data-md-scrollfix>
  238. <li class="md-nav__item">
  239. <a href="../components/" class="md-nav__link">
  240. <span class="md-ellipsis">
  241. Components
  242. </span>
  243. </a>
  244. </li>
  245. <li class="md-nav__item md-nav__item--nested">
  246. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  247. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  248. <span class="md-ellipsis">
  249. Core Resources
  250. </span>
  251. <span class="md-nav__icon md-icon"></span>
  252. </label>
  253. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  254. <label class="md-nav__title" for="__nav_2_2">
  255. <span class="md-nav__icon md-icon"></span>
  256. Core Resources
  257. </label>
  258. <ul class="md-nav__list" data-md-scrollfix>
  259. <li class="md-nav__item">
  260. <a href="../externalsecret/" class="md-nav__link">
  261. <span class="md-ellipsis">
  262. ExternalSecret
  263. </span>
  264. </a>
  265. </li>
  266. <li class="md-nav__item">
  267. <a href="../secretstore/" class="md-nav__link">
  268. <span class="md-ellipsis">
  269. SecretStore
  270. </span>
  271. </a>
  272. </li>
  273. <li class="md-nav__item">
  274. <a href="../clustersecretstore/" class="md-nav__link">
  275. <span class="md-ellipsis">
  276. ClusterSecretStore
  277. </span>
  278. </a>
  279. </li>
  280. <li class="md-nav__item">
  281. <a href="../clusterexternalsecret/" class="md-nav__link">
  282. <span class="md-ellipsis">
  283. ClusterExternalSecret
  284. </span>
  285. </a>
  286. </li>
  287. <li class="md-nav__item">
  288. <a href="../pushsecret/" class="md-nav__link">
  289. <span class="md-ellipsis">
  290. PushSecret
  291. </span>
  292. </a>
  293. </li>
  294. </ul>
  295. </nav>
  296. </li>
  297. <li class="md-nav__item md-nav__item--nested">
  298. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  299. <div class="md-nav__link md-nav__container">
  300. <a href="../generator/" class="md-nav__link ">
  301. <span class="md-ellipsis">
  302. Generators
  303. </span>
  304. </a>
  305. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  306. <span class="md-nav__icon md-icon"></span>
  307. </label>
  308. </div>
  309. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  310. <label class="md-nav__title" for="__nav_2_3">
  311. <span class="md-nav__icon md-icon"></span>
  312. Generators
  313. </label>
  314. <ul class="md-nav__list" data-md-scrollfix>
  315. <li class="md-nav__item">
  316. <a href="../generator/acr/" class="md-nav__link">
  317. <span class="md-ellipsis">
  318. Azure Container Registry
  319. </span>
  320. </a>
  321. </li>
  322. <li class="md-nav__item">
  323. <a href="../generator/ecr/" class="md-nav__link">
  324. <span class="md-ellipsis">
  325. AWS Elastic Container Registry
  326. </span>
  327. </a>
  328. </li>
  329. <li class="md-nav__item">
  330. <a href="../generator/gcr/" class="md-nav__link">
  331. <span class="md-ellipsis">
  332. Google Container Registry
  333. </span>
  334. </a>
  335. </li>
  336. <li class="md-nav__item">
  337. <a href="../generator/vault/" class="md-nav__link">
  338. <span class="md-ellipsis">
  339. Vault Dynamic Secret
  340. </span>
  341. </a>
  342. </li>
  343. <li class="md-nav__item">
  344. <a href="../generator/password/" class="md-nav__link">
  345. <span class="md-ellipsis">
  346. Password
  347. </span>
  348. </a>
  349. </li>
  350. <li class="md-nav__item">
  351. <a href="../generator/fake/" class="md-nav__link">
  352. <span class="md-ellipsis">
  353. Fake
  354. </span>
  355. </a>
  356. </li>
  357. <li class="md-nav__item">
  358. <a href="../generator/webhook/" class="md-nav__link">
  359. <span class="md-ellipsis">
  360. Webhook
  361. </span>
  362. </a>
  363. </li>
  364. </ul>
  365. </nav>
  366. </li>
  367. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  368. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  369. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  370. <span class="md-ellipsis">
  371. Reference Docs
  372. </span>
  373. <span class="md-nav__icon md-icon"></span>
  374. </label>
  375. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  376. <label class="md-nav__title" for="__nav_2_4">
  377. <span class="md-nav__icon md-icon"></span>
  378. Reference Docs
  379. </label>
  380. <ul class="md-nav__list" data-md-scrollfix>
  381. <li class="md-nav__item md-nav__item--active">
  382. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  383. <a href="./" class="md-nav__link md-nav__link--active">
  384. <span class="md-ellipsis">
  385. API specification
  386. </span>
  387. </a>
  388. </li>
  389. <li class="md-nav__item">
  390. <a href="../controller-options/" class="md-nav__link">
  391. <span class="md-ellipsis">
  392. Controller Options
  393. </span>
  394. </a>
  395. </li>
  396. <li class="md-nav__item">
  397. <a href="../metrics/" class="md-nav__link">
  398. <span class="md-ellipsis">
  399. Metrics
  400. </span>
  401. </a>
  402. </li>
  403. </ul>
  404. </nav>
  405. </li>
  406. </ul>
  407. </nav>
  408. </li>
  409. <li class="md-nav__item md-nav__item--nested">
  410. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  411. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  412. <span class="md-ellipsis">
  413. Guides
  414. </span>
  415. <span class="md-nav__icon md-icon"></span>
  416. </label>
  417. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  418. <label class="md-nav__title" for="__nav_3">
  419. <span class="md-nav__icon md-icon"></span>
  420. Guides
  421. </label>
  422. <ul class="md-nav__list" data-md-scrollfix>
  423. <li class="md-nav__item">
  424. <a href="../../guides/introduction/" class="md-nav__link">
  425. <span class="md-ellipsis">
  426. Introduction
  427. </span>
  428. </a>
  429. </li>
  430. <li class="md-nav__item md-nav__item--nested">
  431. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  432. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  433. <span class="md-ellipsis">
  434. External Secrets
  435. </span>
  436. <span class="md-nav__icon md-icon"></span>
  437. </label>
  438. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  439. <label class="md-nav__title" for="__nav_3_2">
  440. <span class="md-nav__icon md-icon"></span>
  441. External Secrets
  442. </label>
  443. <ul class="md-nav__list" data-md-scrollfix>
  444. <li class="md-nav__item">
  445. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  446. <span class="md-ellipsis">
  447. Extract structured data
  448. </span>
  449. </a>
  450. </li>
  451. <li class="md-nav__item">
  452. <a href="../../guides/getallsecrets/" class="md-nav__link">
  453. <span class="md-ellipsis">
  454. Find Secrets by Name or Metadata
  455. </span>
  456. </a>
  457. </li>
  458. <li class="md-nav__item">
  459. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  460. <span class="md-ellipsis">
  461. Rewriting Keys
  462. </span>
  463. </a>
  464. </li>
  465. <li class="md-nav__item md-nav__item--nested">
  466. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  467. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  468. <span class="md-ellipsis">
  469. Advanced Templating
  470. </span>
  471. <span class="md-nav__icon md-icon"></span>
  472. </label>
  473. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  474. <label class="md-nav__title" for="__nav_3_2_4">
  475. <span class="md-nav__icon md-icon"></span>
  476. Advanced Templating
  477. </label>
  478. <ul class="md-nav__list" data-md-scrollfix>
  479. <li class="md-nav__item">
  480. <a href="../../guides/templating/" class="md-nav__link">
  481. <span class="md-ellipsis">
  482. v2
  483. </span>
  484. </a>
  485. </li>
  486. <li class="md-nav__item">
  487. <a href="../../guides/templating-v1/" class="md-nav__link">
  488. <span class="md-ellipsis">
  489. v1
  490. </span>
  491. </a>
  492. </li>
  493. </ul>
  494. </nav>
  495. </li>
  496. <li class="md-nav__item">
  497. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  498. <span class="md-ellipsis">
  499. Kubernetes Secret Types
  500. </span>
  501. </a>
  502. </li>
  503. <li class="md-nav__item">
  504. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  505. <span class="md-ellipsis">
  506. Lifecycle: ownership & deletion
  507. </span>
  508. </a>
  509. </li>
  510. <li class="md-nav__item">
  511. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  512. <span class="md-ellipsis">
  513. Decoding Strategies
  514. </span>
  515. </a>
  516. </li>
  517. <li class="md-nav__item">
  518. <a href="../../guides/controller-class/" class="md-nav__link">
  519. <span class="md-ellipsis">
  520. Controller Classes
  521. </span>
  522. </a>
  523. </li>
  524. </ul>
  525. </nav>
  526. </li>
  527. <li class="md-nav__item">
  528. <a href="../../guides/generator/" class="md-nav__link">
  529. <span class="md-ellipsis">
  530. Generators
  531. </span>
  532. </a>
  533. </li>
  534. <li class="md-nav__item">
  535. <a href="../../guides/pushsecrets/" class="md-nav__link">
  536. <span class="md-ellipsis">
  537. Push Secrets
  538. </span>
  539. </a>
  540. </li>
  541. <li class="md-nav__item md-nav__item--nested">
  542. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  543. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  544. <span class="md-ellipsis">
  545. Operations
  546. </span>
  547. <span class="md-nav__icon md-icon"></span>
  548. </label>
  549. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  550. <label class="md-nav__title" for="__nav_3_5">
  551. <span class="md-nav__icon md-icon"></span>
  552. Operations
  553. </label>
  554. <ul class="md-nav__list" data-md-scrollfix>
  555. <li class="md-nav__item">
  556. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  557. <span class="md-ellipsis">
  558. Multi Tenancy
  559. </span>
  560. </a>
  561. </li>
  562. <li class="md-nav__item">
  563. <a href="../../guides/security-best-practices/" class="md-nav__link">
  564. <span class="md-ellipsis">
  565. Security Best Practices
  566. </span>
  567. </a>
  568. </li>
  569. <li class="md-nav__item">
  570. <a href="../../guides/threat-model/" class="md-nav__link">
  571. <span class="md-ellipsis">
  572. Threat Model
  573. </span>
  574. </a>
  575. </li>
  576. <li class="md-nav__item">
  577. <a href="../../guides/v1beta1/" class="md-nav__link">
  578. <span class="md-ellipsis">
  579. Upgrading to v1beta1
  580. </span>
  581. </a>
  582. </li>
  583. <li class="md-nav__item">
  584. <a href="../../guides/using-latest-image/" class="md-nav__link">
  585. <span class="md-ellipsis">
  586. Using Latest Image
  587. </span>
  588. </a>
  589. </li>
  590. <li class="md-nav__item">
  591. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  592. <span class="md-ellipsis">
  593. Disable Cluster Features
  594. </span>
  595. </a>
  596. </li>
  597. </ul>
  598. </nav>
  599. </li>
  600. </ul>
  601. </nav>
  602. </li>
  603. <li class="md-nav__item md-nav__item--nested">
  604. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  605. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  606. <span class="md-ellipsis">
  607. Provider
  608. </span>
  609. <span class="md-nav__icon md-icon"></span>
  610. </label>
  611. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  612. <label class="md-nav__title" for="__nav_4">
  613. <span class="md-nav__icon md-icon"></span>
  614. Provider
  615. </label>
  616. <ul class="md-nav__list" data-md-scrollfix>
  617. <li class="md-nav__item">
  618. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  619. <span class="md-ellipsis">
  620. AWS Secrets Manager
  621. </span>
  622. </a>
  623. </li>
  624. <li class="md-nav__item">
  625. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  626. <span class="md-ellipsis">
  627. AWS Parameter Store
  628. </span>
  629. </a>
  630. </li>
  631. <li class="md-nav__item">
  632. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  633. <span class="md-ellipsis">
  634. Azure Key Vault
  635. </span>
  636. </a>
  637. </li>
  638. <li class="md-nav__item">
  639. <a href="../../provider/chef/" class="md-nav__link">
  640. <span class="md-ellipsis">
  641. Chef
  642. </span>
  643. </a>
  644. </li>
  645. <li class="md-nav__item">
  646. <a href="../../provider/conjur/" class="md-nav__link">
  647. <span class="md-ellipsis">
  648. CyberArk Conjur
  649. </span>
  650. </a>
  651. </li>
  652. <li class="md-nav__item">
  653. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  654. <span class="md-ellipsis">
  655. Google Cloud Secret Manager
  656. </span>
  657. </a>
  658. </li>
  659. <li class="md-nav__item">
  660. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  661. <span class="md-ellipsis">
  662. HashiCorp Vault
  663. </span>
  664. </a>
  665. </li>
  666. <li class="md-nav__item">
  667. <a href="../../provider/kubernetes/" class="md-nav__link">
  668. <span class="md-ellipsis">
  669. Kubernetes
  670. </span>
  671. </a>
  672. </li>
  673. <li class="md-nav__item">
  674. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  675. <span class="md-ellipsis">
  676. IBM Secrets Manager
  677. </span>
  678. </a>
  679. </li>
  680. <li class="md-nav__item">
  681. <a href="../../provider/akeyless/" class="md-nav__link">
  682. <span class="md-ellipsis">
  683. Akeyless
  684. </span>
  685. </a>
  686. </li>
  687. <li class="md-nav__item">
  688. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  689. <span class="md-ellipsis">
  690. Yandex Certificate Manager
  691. </span>
  692. </a>
  693. </li>
  694. <li class="md-nav__item">
  695. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  696. <span class="md-ellipsis">
  697. Yandex Lockbox
  698. </span>
  699. </a>
  700. </li>
  701. <li class="md-nav__item">
  702. <a href="../../provider/alibaba/" class="md-nav__link">
  703. <span class="md-ellipsis">
  704. Alibaba Cloud
  705. </span>
  706. </a>
  707. </li>
  708. <li class="md-nav__item">
  709. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  710. <span class="md-ellipsis">
  711. GitLab Variables
  712. </span>
  713. </a>
  714. </li>
  715. <li class="md-nav__item">
  716. <a href="../../provider/oracle-vault/" class="md-nav__link">
  717. <span class="md-ellipsis">
  718. Oracle Vault
  719. </span>
  720. </a>
  721. </li>
  722. <li class="md-nav__item">
  723. <a href="../../provider/1password-automation/" class="md-nav__link">
  724. <span class="md-ellipsis">
  725. 1Password Secrets Automation
  726. </span>
  727. </a>
  728. </li>
  729. <li class="md-nav__item">
  730. <a href="../../provider/webhook/" class="md-nav__link">
  731. <span class="md-ellipsis">
  732. Webhook
  733. </span>
  734. </a>
  735. </li>
  736. <li class="md-nav__item">
  737. <a href="../../provider/fake/" class="md-nav__link">
  738. <span class="md-ellipsis">
  739. Fake
  740. </span>
  741. </a>
  742. </li>
  743. <li class="md-nav__item">
  744. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  745. <span class="md-ellipsis">
  746. senhasegura DevOps Secrets Management (DSM)
  747. </span>
  748. </a>
  749. </li>
  750. <li class="md-nav__item">
  751. <a href="../../provider/doppler/" class="md-nav__link">
  752. <span class="md-ellipsis">
  753. Doppler
  754. </span>
  755. </a>
  756. </li>
  757. <li class="md-nav__item">
  758. <a href="../../provider/keeper-security/" class="md-nav__link">
  759. <span class="md-ellipsis">
  760. Keeper Security
  761. </span>
  762. </a>
  763. </li>
  764. <li class="md-nav__item">
  765. <a href="../../provider/cloak/" class="md-nav__link">
  766. <span class="md-ellipsis">
  767. Cloak End 2 End Encrypted Secrets
  768. </span>
  769. </a>
  770. </li>
  771. <li class="md-nav__item">
  772. <a href="../../provider/scaleway/" class="md-nav__link">
  773. <span class="md-ellipsis">
  774. Scaleway
  775. </span>
  776. </a>
  777. </li>
  778. <li class="md-nav__item">
  779. <a href="../../provider/delinea/" class="md-nav__link">
  780. <span class="md-ellipsis">
  781. Delinea
  782. </span>
  783. </a>
  784. </li>
  785. <li class="md-nav__item">
  786. <a href="../../provider/passbolt/" class="md-nav__link">
  787. <span class="md-ellipsis">
  788. Passbolt
  789. </span>
  790. </a>
  791. </li>
  792. <li class="md-nav__item">
  793. <a href="../../provider/pulumi/" class="md-nav__link">
  794. <span class="md-ellipsis">
  795. Pulumi ESC
  796. </span>
  797. </a>
  798. </li>
  799. <li class="md-nav__item">
  800. <a href="../../provider/onboardbase/" class="md-nav__link">
  801. <span class="md-ellipsis">
  802. Onboardbase
  803. </span>
  804. </a>
  805. </li>
  806. <li class="md-nav__item">
  807. <a href="../../provider-passworddepot/" class="md-nav__link">
  808. <span class="md-ellipsis">
  809. Password Depot
  810. </span>
  811. </a>
  812. </li>
  813. <li class="md-nav__item">
  814. <a href="../../provider/fortanix/" class="md-nav__link">
  815. <span class="md-ellipsis">
  816. Fortanix
  817. </span>
  818. </a>
  819. </li>
  820. </ul>
  821. </nav>
  822. </li>
  823. <li class="md-nav__item md-nav__item--nested">
  824. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  825. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  826. <span class="md-ellipsis">
  827. Examples
  828. </span>
  829. <span class="md-nav__icon md-icon"></span>
  830. </label>
  831. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  832. <label class="md-nav__title" for="__nav_5">
  833. <span class="md-nav__icon md-icon"></span>
  834. Examples
  835. </label>
  836. <ul class="md-nav__list" data-md-scrollfix>
  837. <li class="md-nav__item">
  838. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  839. <span class="md-ellipsis">
  840. FluxCD
  841. </span>
  842. </a>
  843. </li>
  844. <li class="md-nav__item">
  845. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  846. <span class="md-ellipsis">
  847. Anchore Engine
  848. </span>
  849. </a>
  850. </li>
  851. <li class="md-nav__item">
  852. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  853. <span class="md-ellipsis">
  854. Jenkins
  855. </span>
  856. </a>
  857. </li>
  858. <li class="md-nav__item">
  859. <a href="../../examples/bitwarden/" class="md-nav__link">
  860. <span class="md-ellipsis">
  861. BitWarden
  862. </span>
  863. </a>
  864. </li>
  865. </ul>
  866. </nav>
  867. </li>
  868. <li class="md-nav__item md-nav__item--nested">
  869. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  870. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  871. <span class="md-ellipsis">
  872. Community
  873. </span>
  874. <span class="md-nav__icon md-icon"></span>
  875. </label>
  876. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  877. <label class="md-nav__title" for="__nav_6">
  878. <span class="md-nav__icon md-icon"></span>
  879. Community
  880. </label>
  881. <ul class="md-nav__list" data-md-scrollfix>
  882. <li class="md-nav__item md-nav__item--nested">
  883. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  884. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  885. <span class="md-ellipsis">
  886. Contributing
  887. </span>
  888. <span class="md-nav__icon md-icon"></span>
  889. </label>
  890. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  891. <label class="md-nav__title" for="__nav_6_1">
  892. <span class="md-nav__icon md-icon"></span>
  893. Contributing
  894. </label>
  895. <ul class="md-nav__list" data-md-scrollfix>
  896. <li class="md-nav__item">
  897. <a href="../../contributing/devguide/" class="md-nav__link">
  898. <span class="md-ellipsis">
  899. Developer guide
  900. </span>
  901. </a>
  902. </li>
  903. <li class="md-nav__item">
  904. <a href="../../contributing/process/" class="md-nav__link">
  905. <span class="md-ellipsis">
  906. Contributing Process
  907. </span>
  908. </a>
  909. </li>
  910. <li class="md-nav__item">
  911. <a href="../../contributing/release/" class="md-nav__link">
  912. <span class="md-ellipsis">
  913. Release Process
  914. </span>
  915. </a>
  916. </li>
  917. <li class="md-nav__item">
  918. <a href="../../contributing/coc/" class="md-nav__link">
  919. <span class="md-ellipsis">
  920. Code of Conduct
  921. </span>
  922. </a>
  923. </li>
  924. <li class="md-nav__item">
  925. <a href="../../contributing/roadmap/" class="md-nav__link">
  926. <span class="md-ellipsis">
  927. Roadmap
  928. </span>
  929. </a>
  930. </li>
  931. </ul>
  932. </nav>
  933. </li>
  934. <li class="md-nav__item md-nav__item--nested">
  935. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  936. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  937. <span class="md-ellipsis">
  938. External Resources
  939. </span>
  940. <span class="md-nav__icon md-icon"></span>
  941. </label>
  942. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  943. <label class="md-nav__title" for="__nav_6_2">
  944. <span class="md-nav__icon md-icon"></span>
  945. External Resources
  946. </label>
  947. <ul class="md-nav__list" data-md-scrollfix>
  948. <li class="md-nav__item">
  949. <a href="../../eso-talks/" class="md-nav__link">
  950. <span class="md-ellipsis">
  951. Talks
  952. </span>
  953. </a>
  954. </li>
  955. <li class="md-nav__item">
  956. <a href="../../eso-demos/" class="md-nav__link">
  957. <span class="md-ellipsis">
  958. Demos
  959. </span>
  960. </a>
  961. </li>
  962. <li class="md-nav__item">
  963. <a href="../../eso-blogs/" class="md-nav__link">
  964. <span class="md-ellipsis">
  965. Blogs
  966. </span>
  967. </a>
  968. </li>
  969. </ul>
  970. </nav>
  971. </li>
  972. </ul>
  973. </nav>
  974. </li>
  975. <li class="md-nav__item md-nav__item--nested">
  976. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_7" >
  977. <label class="md-nav__link" for="__nav_7" id="__nav_7_label" tabindex="0">
  978. <span class="md-ellipsis">
  979. References
  980. </span>
  981. <span class="md-nav__icon md-icon"></span>
  982. </label>
  983. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_7_label" aria-expanded="false">
  984. <label class="md-nav__title" for="__nav_7">
  985. <span class="md-nav__icon md-icon"></span>
  986. References
  987. </label>
  988. <ul class="md-nav__list" data-md-scrollfix>
  989. <li class="md-nav__item">
  990. <a href="../../spec/" class="md-nav__link">
  991. <span class="md-ellipsis">
  992. API specification
  993. </span>
  994. </a>
  995. </li>
  996. </ul>
  997. </nav>
  998. </li>
  999. </ul>
  1000. </nav>
  1001. </div>
  1002. </div>
  1003. </div>
  1004. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1005. <div class="md-sidebar__scrollwrap">
  1006. <div class="md-sidebar__inner">
  1007. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1008. </nav>
  1009. </div>
  1010. </div>
  1011. </div>
  1012. <div class="md-content" data-md-component="content">
  1013. <article class="md-content__inner md-typeset">
  1014. <h1>API specification</h1>
  1015. <p>Packages:</p>
  1016. <ul>
  1017. <li>
  1018. <a href="#external-secrets.io%2fv1beta1">external-secrets.io/v1beta1</a>
  1019. </li>
  1020. </ul>
  1021. <h2 id="external-secrets.io/v1beta1">external-secrets.io/v1beta1</h2>
  1022. <p>
  1023. <p>Package v1beta1 contains resources for external-secrets</p>
  1024. </p>
  1025. <p>Resource Types:</p>
  1026. <ul></ul>
  1027. <h3 id="external-secrets.io/v1beta1.AWSAuth">AWSAuth
  1028. </h3>
  1029. <p>
  1030. (<em>Appears on:</em>
  1031. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  1032. </p>
  1033. <p>
  1034. <p>AWSAuth tells the controller how to do authentication with aws.
  1035. Only one of secretRef or jwt can be specified.
  1036. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1037. </p>
  1038. <table>
  1039. <thead>
  1040. <tr>
  1041. <th>Field</th>
  1042. <th>Description</th>
  1043. </tr>
  1044. </thead>
  1045. <tbody>
  1046. <tr>
  1047. <td>
  1048. <code>secretRef</code></br>
  1049. <em>
  1050. <a href="#external-secrets.io/v1beta1.AWSAuthSecretRef">
  1051. AWSAuthSecretRef
  1052. </a>
  1053. </em>
  1054. </td>
  1055. <td>
  1056. <em>(Optional)</em>
  1057. </td>
  1058. </tr>
  1059. <tr>
  1060. <td>
  1061. <code>jwt</code></br>
  1062. <em>
  1063. <a href="#external-secrets.io/v1beta1.AWSJWTAuth">
  1064. AWSJWTAuth
  1065. </a>
  1066. </em>
  1067. </td>
  1068. <td>
  1069. <em>(Optional)</em>
  1070. </td>
  1071. </tr>
  1072. </tbody>
  1073. </table>
  1074. <h3 id="external-secrets.io/v1beta1.AWSAuthSecretRef">AWSAuthSecretRef
  1075. </h3>
  1076. <p>
  1077. (<em>Appears on:</em>
  1078. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  1079. </p>
  1080. <p>
  1081. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1082. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</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>accessKeyIDSecretRef</code></br>
  1095. <em>
  1096. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1097. External Secrets meta/v1.SecretKeySelector
  1098. </a>
  1099. </em>
  1100. </td>
  1101. <td>
  1102. <p>The AccessKeyID is used for authentication</p>
  1103. </td>
  1104. </tr>
  1105. <tr>
  1106. <td>
  1107. <code>secretAccessKeySecretRef</code></br>
  1108. <em>
  1109. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1110. External Secrets meta/v1.SecretKeySelector
  1111. </a>
  1112. </em>
  1113. </td>
  1114. <td>
  1115. <p>The SecretAccessKey is used for authentication</p>
  1116. </td>
  1117. </tr>
  1118. <tr>
  1119. <td>
  1120. <code>sessionTokenSecretRef</code></br>
  1121. <em>
  1122. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1123. External Secrets meta/v1.SecretKeySelector
  1124. </a>
  1125. </em>
  1126. </td>
  1127. <td>
  1128. <p>The SessionToken used for authentication
  1129. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1130. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  1131. </td>
  1132. </tr>
  1133. </tbody>
  1134. </table>
  1135. <h3 id="external-secrets.io/v1beta1.AWSJWTAuth">AWSJWTAuth
  1136. </h3>
  1137. <p>
  1138. (<em>Appears on:</em>
  1139. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  1140. </p>
  1141. <p>
  1142. <p>Authenticate against AWS using service account tokens.</p>
  1143. </p>
  1144. <table>
  1145. <thead>
  1146. <tr>
  1147. <th>Field</th>
  1148. <th>Description</th>
  1149. </tr>
  1150. </thead>
  1151. <tbody>
  1152. <tr>
  1153. <td>
  1154. <code>serviceAccountRef</code></br>
  1155. <em>
  1156. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1157. External Secrets meta/v1.ServiceAccountSelector
  1158. </a>
  1159. </em>
  1160. </td>
  1161. <td>
  1162. </td>
  1163. </tr>
  1164. </tbody>
  1165. </table>
  1166. <h3 id="external-secrets.io/v1beta1.AWSProvider">AWSProvider
  1167. </h3>
  1168. <p>
  1169. (<em>Appears on:</em>
  1170. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1171. </p>
  1172. <p>
  1173. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1174. </p>
  1175. <table>
  1176. <thead>
  1177. <tr>
  1178. <th>Field</th>
  1179. <th>Description</th>
  1180. </tr>
  1181. </thead>
  1182. <tbody>
  1183. <tr>
  1184. <td>
  1185. <code>service</code></br>
  1186. <em>
  1187. <a href="#external-secrets.io/v1beta1.AWSServiceType">
  1188. AWSServiceType
  1189. </a>
  1190. </em>
  1191. </td>
  1192. <td>
  1193. <p>Service defines which service should be used to fetch the secrets</p>
  1194. </td>
  1195. </tr>
  1196. <tr>
  1197. <td>
  1198. <code>auth</code></br>
  1199. <em>
  1200. <a href="#external-secrets.io/v1beta1.AWSAuth">
  1201. AWSAuth
  1202. </a>
  1203. </em>
  1204. </td>
  1205. <td>
  1206. <em>(Optional)</em>
  1207. <p>Auth defines the information necessary to authenticate against AWS
  1208. if not set aws sdk will infer credentials from your environment
  1209. 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>
  1210. </td>
  1211. </tr>
  1212. <tr>
  1213. <td>
  1214. <code>role</code></br>
  1215. <em>
  1216. string
  1217. </em>
  1218. </td>
  1219. <td>
  1220. <em>(Optional)</em>
  1221. <p>Role is a Role ARN which the provider will assume</p>
  1222. </td>
  1223. </tr>
  1224. <tr>
  1225. <td>
  1226. <code>region</code></br>
  1227. <em>
  1228. string
  1229. </em>
  1230. </td>
  1231. <td>
  1232. <p>AWS Region to be used for the provider</p>
  1233. </td>
  1234. </tr>
  1235. <tr>
  1236. <td>
  1237. <code>additionalRoles</code></br>
  1238. <em>
  1239. []string
  1240. </em>
  1241. </td>
  1242. <td>
  1243. <em>(Optional)</em>
  1244. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1245. </td>
  1246. </tr>
  1247. <tr>
  1248. <td>
  1249. <code>externalID</code></br>
  1250. <em>
  1251. string
  1252. </em>
  1253. </td>
  1254. <td>
  1255. <p>AWS External ID set on assumed IAM roles</p>
  1256. </td>
  1257. </tr>
  1258. <tr>
  1259. <td>
  1260. <code>sessionTags</code></br>
  1261. <em>
  1262. <a href="#external-secrets.io/v1beta1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1.Tag">
  1263. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1.Tag
  1264. </a>
  1265. </em>
  1266. </td>
  1267. <td>
  1268. <em>(Optional)</em>
  1269. <p>AWS STS assume role session tags</p>
  1270. </td>
  1271. </tr>
  1272. <tr>
  1273. <td>
  1274. <code>secretsManager</code></br>
  1275. <em>
  1276. <a href="#external-secrets.io/v1beta1.SecretsManager">
  1277. SecretsManager
  1278. </a>
  1279. </em>
  1280. </td>
  1281. <td>
  1282. <em>(Optional)</em>
  1283. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1284. </td>
  1285. </tr>
  1286. <tr>
  1287. <td>
  1288. <code>transitiveTagKeys</code></br>
  1289. <em>
  1290. []*string
  1291. </em>
  1292. </td>
  1293. <td>
  1294. <em>(Optional)</em>
  1295. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1296. </td>
  1297. </tr>
  1298. </tbody>
  1299. </table>
  1300. <h3 id="external-secrets.io/v1beta1.AWSServiceType">AWSServiceType
  1301. (<code>string</code> alias)</p></h3>
  1302. <p>
  1303. (<em>Appears on:</em>
  1304. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  1305. </p>
  1306. <p>
  1307. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1308. </p>
  1309. <table>
  1310. <thead>
  1311. <tr>
  1312. <th>Value</th>
  1313. <th>Description</th>
  1314. </tr>
  1315. </thead>
  1316. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1317. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1318. 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>
  1319. </td>
  1320. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1321. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1322. 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>
  1323. </td>
  1324. </tr></tbody>
  1325. </table>
  1326. <h3 id="external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth
  1327. </h3>
  1328. <p>
  1329. (<em>Appears on:</em>
  1330. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>)
  1331. </p>
  1332. <p>
  1333. </p>
  1334. <table>
  1335. <thead>
  1336. <tr>
  1337. <th>Field</th>
  1338. <th>Description</th>
  1339. </tr>
  1340. </thead>
  1341. <tbody>
  1342. <tr>
  1343. <td>
  1344. <code>secretRef</code></br>
  1345. <em>
  1346. <a href="#external-secrets.io/v1beta1.AkeylessAuthSecretRef">
  1347. AkeylessAuthSecretRef
  1348. </a>
  1349. </em>
  1350. </td>
  1351. <td>
  1352. <em>(Optional)</em>
  1353. <p>Reference to a Secret that contains the details
  1354. to authenticate with Akeyless.</p>
  1355. </td>
  1356. </tr>
  1357. <tr>
  1358. <td>
  1359. <code>kubernetesAuth</code></br>
  1360. <em>
  1361. <a href="#external-secrets.io/v1beta1.AkeylessKubernetesAuth">
  1362. AkeylessKubernetesAuth
  1363. </a>
  1364. </em>
  1365. </td>
  1366. <td>
  1367. <em>(Optional)</em>
  1368. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1369. token stored in the named Secret resource.</p>
  1370. </td>
  1371. </tr>
  1372. </tbody>
  1373. </table>
  1374. <h3 id="external-secrets.io/v1beta1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1375. </h3>
  1376. <p>
  1377. (<em>Appears on:</em>
  1378. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1379. </p>
  1380. <p>
  1381. <p>AkeylessAuthSecretRef
  1382. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1383. </p>
  1384. <table>
  1385. <thead>
  1386. <tr>
  1387. <th>Field</th>
  1388. <th>Description</th>
  1389. </tr>
  1390. </thead>
  1391. <tbody>
  1392. <tr>
  1393. <td>
  1394. <code>accessID</code></br>
  1395. <em>
  1396. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1397. External Secrets meta/v1.SecretKeySelector
  1398. </a>
  1399. </em>
  1400. </td>
  1401. <td>
  1402. <p>The SecretAccessID is used for authentication</p>
  1403. </td>
  1404. </tr>
  1405. <tr>
  1406. <td>
  1407. <code>accessType</code></br>
  1408. <em>
  1409. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1410. External Secrets meta/v1.SecretKeySelector
  1411. </a>
  1412. </em>
  1413. </td>
  1414. <td>
  1415. </td>
  1416. </tr>
  1417. <tr>
  1418. <td>
  1419. <code>accessTypeParam</code></br>
  1420. <em>
  1421. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1422. External Secrets meta/v1.SecretKeySelector
  1423. </a>
  1424. </em>
  1425. </td>
  1426. <td>
  1427. </td>
  1428. </tr>
  1429. </tbody>
  1430. </table>
  1431. <h3 id="external-secrets.io/v1beta1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1432. </h3>
  1433. <p>
  1434. (<em>Appears on:</em>
  1435. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1436. </p>
  1437. <p>
  1438. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1439. </p>
  1440. <table>
  1441. <thead>
  1442. <tr>
  1443. <th>Field</th>
  1444. <th>Description</th>
  1445. </tr>
  1446. </thead>
  1447. <tbody>
  1448. <tr>
  1449. <td>
  1450. <code>accessID</code></br>
  1451. <em>
  1452. string
  1453. </em>
  1454. </td>
  1455. <td>
  1456. <p>the Akeyless Kubernetes auth-method access-id</p>
  1457. </td>
  1458. </tr>
  1459. <tr>
  1460. <td>
  1461. <code>k8sConfName</code></br>
  1462. <em>
  1463. string
  1464. </em>
  1465. </td>
  1466. <td>
  1467. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1468. </td>
  1469. </tr>
  1470. <tr>
  1471. <td>
  1472. <code>serviceAccountRef</code></br>
  1473. <em>
  1474. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1475. External Secrets meta/v1.ServiceAccountSelector
  1476. </a>
  1477. </em>
  1478. </td>
  1479. <td>
  1480. <em>(Optional)</em>
  1481. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1482. If the service account is specified, the service account secret token JWT will be used
  1483. for authenticating with Akeyless. If the service account selector is not supplied,
  1484. the secretRef will be used instead.</p>
  1485. </td>
  1486. </tr>
  1487. <tr>
  1488. <td>
  1489. <code>secretRef</code></br>
  1490. <em>
  1491. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1492. External Secrets meta/v1.SecretKeySelector
  1493. </a>
  1494. </em>
  1495. </td>
  1496. <td>
  1497. <em>(Optional)</em>
  1498. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1499. for authenticating with Akeyless. If a name is specified without a key,
  1500. <code>token</code> is the default. If one is not specified, the one bound to
  1501. the controller will be used.</p>
  1502. </td>
  1503. </tr>
  1504. </tbody>
  1505. </table>
  1506. <h3 id="external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider
  1507. </h3>
  1508. <p>
  1509. (<em>Appears on:</em>
  1510. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1511. </p>
  1512. <p>
  1513. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1514. </p>
  1515. <table>
  1516. <thead>
  1517. <tr>
  1518. <th>Field</th>
  1519. <th>Description</th>
  1520. </tr>
  1521. </thead>
  1522. <tbody>
  1523. <tr>
  1524. <td>
  1525. <code>akeylessGWApiURL</code></br>
  1526. <em>
  1527. string
  1528. </em>
  1529. </td>
  1530. <td>
  1531. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1532. </td>
  1533. </tr>
  1534. <tr>
  1535. <td>
  1536. <code>authSecretRef</code></br>
  1537. <em>
  1538. <a href="#external-secrets.io/v1beta1.AkeylessAuth">
  1539. AkeylessAuth
  1540. </a>
  1541. </em>
  1542. </td>
  1543. <td>
  1544. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1545. </td>
  1546. </tr>
  1547. <tr>
  1548. <td>
  1549. <code>caBundle</code></br>
  1550. <em>
  1551. []byte
  1552. </em>
  1553. </td>
  1554. <td>
  1555. <em>(Optional)</em>
  1556. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1557. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1558. are used to validate the TLS connection.</p>
  1559. </td>
  1560. </tr>
  1561. <tr>
  1562. <td>
  1563. <code>caProvider</code></br>
  1564. <em>
  1565. <a href="#external-secrets.io/v1beta1.CAProvider">
  1566. CAProvider
  1567. </a>
  1568. </em>
  1569. </td>
  1570. <td>
  1571. <em>(Optional)</em>
  1572. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1573. </td>
  1574. </tr>
  1575. </tbody>
  1576. </table>
  1577. <h3 id="external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth
  1578. </h3>
  1579. <p>
  1580. (<em>Appears on:</em>
  1581. <a href="#external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider</a>)
  1582. </p>
  1583. <p>
  1584. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1585. </p>
  1586. <table>
  1587. <thead>
  1588. <tr>
  1589. <th>Field</th>
  1590. <th>Description</th>
  1591. </tr>
  1592. </thead>
  1593. <tbody>
  1594. <tr>
  1595. <td>
  1596. <code>secretRef</code></br>
  1597. <em>
  1598. <a href="#external-secrets.io/v1beta1.AlibabaAuthSecretRef">
  1599. AlibabaAuthSecretRef
  1600. </a>
  1601. </em>
  1602. </td>
  1603. <td>
  1604. <em>(Optional)</em>
  1605. </td>
  1606. </tr>
  1607. <tr>
  1608. <td>
  1609. <code>rrsa</code></br>
  1610. <em>
  1611. <a href="#external-secrets.io/v1beta1.AlibabaRRSAAuth">
  1612. AlibabaRRSAAuth
  1613. </a>
  1614. </em>
  1615. </td>
  1616. <td>
  1617. <em>(Optional)</em>
  1618. </td>
  1619. </tr>
  1620. </tbody>
  1621. </table>
  1622. <h3 id="external-secrets.io/v1beta1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1623. </h3>
  1624. <p>
  1625. (<em>Appears on:</em>
  1626. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1627. </p>
  1628. <p>
  1629. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1630. </p>
  1631. <table>
  1632. <thead>
  1633. <tr>
  1634. <th>Field</th>
  1635. <th>Description</th>
  1636. </tr>
  1637. </thead>
  1638. <tbody>
  1639. <tr>
  1640. <td>
  1641. <code>accessKeyIDSecretRef</code></br>
  1642. <em>
  1643. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1644. External Secrets meta/v1.SecretKeySelector
  1645. </a>
  1646. </em>
  1647. </td>
  1648. <td>
  1649. <p>The AccessKeyID is used for authentication</p>
  1650. </td>
  1651. </tr>
  1652. <tr>
  1653. <td>
  1654. <code>accessKeySecretSecretRef</code></br>
  1655. <em>
  1656. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1657. External Secrets meta/v1.SecretKeySelector
  1658. </a>
  1659. </em>
  1660. </td>
  1661. <td>
  1662. <p>The AccessKeySecret is used for authentication</p>
  1663. </td>
  1664. </tr>
  1665. </tbody>
  1666. </table>
  1667. <h3 id="external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider
  1668. </h3>
  1669. <p>
  1670. (<em>Appears on:</em>
  1671. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1672. </p>
  1673. <p>
  1674. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1675. </p>
  1676. <table>
  1677. <thead>
  1678. <tr>
  1679. <th>Field</th>
  1680. <th>Description</th>
  1681. </tr>
  1682. </thead>
  1683. <tbody>
  1684. <tr>
  1685. <td>
  1686. <code>auth</code></br>
  1687. <em>
  1688. <a href="#external-secrets.io/v1beta1.AlibabaAuth">
  1689. AlibabaAuth
  1690. </a>
  1691. </em>
  1692. </td>
  1693. <td>
  1694. </td>
  1695. </tr>
  1696. <tr>
  1697. <td>
  1698. <code>regionID</code></br>
  1699. <em>
  1700. string
  1701. </em>
  1702. </td>
  1703. <td>
  1704. <p>Alibaba Region to be used for the provider</p>
  1705. </td>
  1706. </tr>
  1707. </tbody>
  1708. </table>
  1709. <h3 id="external-secrets.io/v1beta1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1710. </h3>
  1711. <p>
  1712. (<em>Appears on:</em>
  1713. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1714. </p>
  1715. <p>
  1716. <p>Authenticate against Alibaba using RRSA.</p>
  1717. </p>
  1718. <table>
  1719. <thead>
  1720. <tr>
  1721. <th>Field</th>
  1722. <th>Description</th>
  1723. </tr>
  1724. </thead>
  1725. <tbody>
  1726. <tr>
  1727. <td>
  1728. <code>oidcProviderArn</code></br>
  1729. <em>
  1730. string
  1731. </em>
  1732. </td>
  1733. <td>
  1734. </td>
  1735. </tr>
  1736. <tr>
  1737. <td>
  1738. <code>oidcTokenFilePath</code></br>
  1739. <em>
  1740. string
  1741. </em>
  1742. </td>
  1743. <td>
  1744. </td>
  1745. </tr>
  1746. <tr>
  1747. <td>
  1748. <code>roleArn</code></br>
  1749. <em>
  1750. string
  1751. </em>
  1752. </td>
  1753. <td>
  1754. </td>
  1755. </tr>
  1756. <tr>
  1757. <td>
  1758. <code>sessionName</code></br>
  1759. <em>
  1760. string
  1761. </em>
  1762. </td>
  1763. <td>
  1764. </td>
  1765. </tr>
  1766. </tbody>
  1767. </table>
  1768. <h3 id="external-secrets.io/v1beta1.AzureAuthType">AzureAuthType
  1769. (<code>string</code> alias)</p></h3>
  1770. <p>
  1771. (<em>Appears on:</em>
  1772. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1773. </p>
  1774. <p>
  1775. <p>AuthType describes how to authenticate to the Azure Keyvault
  1776. Only one of the following auth types may be specified.
  1777. If none of the following auth type is specified, the default one
  1778. is ServicePrincipal.</p>
  1779. </p>
  1780. <table>
  1781. <thead>
  1782. <tr>
  1783. <th>Value</th>
  1784. <th>Description</th>
  1785. </tr>
  1786. </thead>
  1787. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  1788. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  1789. </td>
  1790. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  1791. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  1792. </td>
  1793. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  1794. <td><p>Using Workload Identity service accounts to authenticate.</p>
  1795. </td>
  1796. </tr></tbody>
  1797. </table>
  1798. <h3 id="external-secrets.io/v1beta1.AzureEnvironmentType">AzureEnvironmentType
  1799. (<code>string</code> alias)</p></h3>
  1800. <p>
  1801. (<em>Appears on:</em>
  1802. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1803. </p>
  1804. <p>
  1805. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  1806. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1807. 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>
  1808. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1809. </p>
  1810. <table>
  1811. <thead>
  1812. <tr>
  1813. <th>Value</th>
  1814. <th>Description</th>
  1815. </tr>
  1816. </thead>
  1817. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  1818. <td></td>
  1819. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  1820. <td></td>
  1821. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  1822. <td></td>
  1823. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  1824. <td></td>
  1825. </tr></tbody>
  1826. </table>
  1827. <h3 id="external-secrets.io/v1beta1.AzureKVAuth">AzureKVAuth
  1828. </h3>
  1829. <p>
  1830. (<em>Appears on:</em>
  1831. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1832. </p>
  1833. <p>
  1834. <p>Configuration used to authenticate with Azure.</p>
  1835. </p>
  1836. <table>
  1837. <thead>
  1838. <tr>
  1839. <th>Field</th>
  1840. <th>Description</th>
  1841. </tr>
  1842. </thead>
  1843. <tbody>
  1844. <tr>
  1845. <td>
  1846. <code>clientId</code></br>
  1847. <em>
  1848. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1849. External Secrets meta/v1.SecretKeySelector
  1850. </a>
  1851. </em>
  1852. </td>
  1853. <td>
  1854. <em>(Optional)</em>
  1855. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  1856. </td>
  1857. </tr>
  1858. <tr>
  1859. <td>
  1860. <code>tenantId</code></br>
  1861. <em>
  1862. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1863. External Secrets meta/v1.SecretKeySelector
  1864. </a>
  1865. </em>
  1866. </td>
  1867. <td>
  1868. <em>(Optional)</em>
  1869. <p>The Azure tenantId of the managed identity used for authentication.</p>
  1870. </td>
  1871. </tr>
  1872. <tr>
  1873. <td>
  1874. <code>clientSecret</code></br>
  1875. <em>
  1876. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1877. External Secrets meta/v1.SecretKeySelector
  1878. </a>
  1879. </em>
  1880. </td>
  1881. <td>
  1882. <em>(Optional)</em>
  1883. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  1884. </td>
  1885. </tr>
  1886. </tbody>
  1887. </table>
  1888. <h3 id="external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider
  1889. </h3>
  1890. <p>
  1891. (<em>Appears on:</em>
  1892. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1893. </p>
  1894. <p>
  1895. <p>Configures an store to sync secrets using Azure KV.</p>
  1896. </p>
  1897. <table>
  1898. <thead>
  1899. <tr>
  1900. <th>Field</th>
  1901. <th>Description</th>
  1902. </tr>
  1903. </thead>
  1904. <tbody>
  1905. <tr>
  1906. <td>
  1907. <code>authType</code></br>
  1908. <em>
  1909. <a href="#external-secrets.io/v1beta1.AzureAuthType">
  1910. AzureAuthType
  1911. </a>
  1912. </em>
  1913. </td>
  1914. <td>
  1915. <em>(Optional)</em>
  1916. <p>Auth type defines how to authenticate to the keyvault service.
  1917. Valid values are:
  1918. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  1919. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  1920. </td>
  1921. </tr>
  1922. <tr>
  1923. <td>
  1924. <code>vaultUrl</code></br>
  1925. <em>
  1926. string
  1927. </em>
  1928. </td>
  1929. <td>
  1930. <p>Vault Url from which the secrets to be fetched from.</p>
  1931. </td>
  1932. </tr>
  1933. <tr>
  1934. <td>
  1935. <code>tenantId</code></br>
  1936. <em>
  1937. string
  1938. </em>
  1939. </td>
  1940. <td>
  1941. <em>(Optional)</em>
  1942. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  1943. </td>
  1944. </tr>
  1945. <tr>
  1946. <td>
  1947. <code>environmentType</code></br>
  1948. <em>
  1949. <a href="#external-secrets.io/v1beta1.AzureEnvironmentType">
  1950. AzureEnvironmentType
  1951. </a>
  1952. </em>
  1953. </td>
  1954. <td>
  1955. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  1956. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1957. 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>
  1958. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1959. </td>
  1960. </tr>
  1961. <tr>
  1962. <td>
  1963. <code>authSecretRef</code></br>
  1964. <em>
  1965. <a href="#external-secrets.io/v1beta1.AzureKVAuth">
  1966. AzureKVAuth
  1967. </a>
  1968. </em>
  1969. </td>
  1970. <td>
  1971. <em>(Optional)</em>
  1972. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  1973. </td>
  1974. </tr>
  1975. <tr>
  1976. <td>
  1977. <code>serviceAccountRef</code></br>
  1978. <em>
  1979. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1980. External Secrets meta/v1.ServiceAccountSelector
  1981. </a>
  1982. </em>
  1983. </td>
  1984. <td>
  1985. <em>(Optional)</em>
  1986. <p>ServiceAccountRef specified the service account
  1987. that should be used when authenticating with WorkloadIdentity.</p>
  1988. </td>
  1989. </tr>
  1990. <tr>
  1991. <td>
  1992. <code>identityId</code></br>
  1993. <em>
  1994. string
  1995. </em>
  1996. </td>
  1997. <td>
  1998. <em>(Optional)</em>
  1999. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2000. </td>
  2001. </tr>
  2002. </tbody>
  2003. </table>
  2004. <h3 id="external-secrets.io/v1beta1.CAProvider">CAProvider
  2005. </h3>
  2006. <p>
  2007. (<em>Appears on:</em>
  2008. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>,
  2009. <a href="#external-secrets.io/v1beta1.ConjurProvider">ConjurProvider</a>,
  2010. <a href="#external-secrets.io/v1beta1.KubernetesServer">KubernetesServer</a>,
  2011. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  2012. </p>
  2013. <p>
  2014. <p>Used to provide custom certificate authority (CA) certificates
  2015. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  2016. that contains a PEM-encoded certificate.</p>
  2017. </p>
  2018. <table>
  2019. <thead>
  2020. <tr>
  2021. <th>Field</th>
  2022. <th>Description</th>
  2023. </tr>
  2024. </thead>
  2025. <tbody>
  2026. <tr>
  2027. <td>
  2028. <code>type</code></br>
  2029. <em>
  2030. <a href="#external-secrets.io/v1beta1.CAProviderType">
  2031. CAProviderType
  2032. </a>
  2033. </em>
  2034. </td>
  2035. <td>
  2036. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2037. </td>
  2038. </tr>
  2039. <tr>
  2040. <td>
  2041. <code>name</code></br>
  2042. <em>
  2043. string
  2044. </em>
  2045. </td>
  2046. <td>
  2047. <p>The name of the object located at the provider type.</p>
  2048. </td>
  2049. </tr>
  2050. <tr>
  2051. <td>
  2052. <code>key</code></br>
  2053. <em>
  2054. string
  2055. </em>
  2056. </td>
  2057. <td>
  2058. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  2059. </td>
  2060. </tr>
  2061. <tr>
  2062. <td>
  2063. <code>namespace</code></br>
  2064. <em>
  2065. string
  2066. </em>
  2067. </td>
  2068. <td>
  2069. <em>(Optional)</em>
  2070. <p>The namespace the Provider type is in.
  2071. Can only be defined when used in a ClusterSecretStore.</p>
  2072. </td>
  2073. </tr>
  2074. </tbody>
  2075. </table>
  2076. <h3 id="external-secrets.io/v1beta1.CAProviderType">CAProviderType
  2077. (<code>string</code> alias)</p></h3>
  2078. <p>
  2079. (<em>Appears on:</em>
  2080. <a href="#external-secrets.io/v1beta1.CAProvider">CAProvider</a>)
  2081. </p>
  2082. <p>
  2083. </p>
  2084. <table>
  2085. <thead>
  2086. <tr>
  2087. <th>Value</th>
  2088. <th>Description</th>
  2089. </tr>
  2090. </thead>
  2091. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  2092. <td></td>
  2093. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  2094. <td></td>
  2095. </tr></tbody>
  2096. </table>
  2097. <h3 id="external-secrets.io/v1beta1.CertAuth">CertAuth
  2098. </h3>
  2099. <p>
  2100. (<em>Appears on:</em>
  2101. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  2102. </p>
  2103. <p>
  2104. </p>
  2105. <table>
  2106. <thead>
  2107. <tr>
  2108. <th>Field</th>
  2109. <th>Description</th>
  2110. </tr>
  2111. </thead>
  2112. <tbody>
  2113. <tr>
  2114. <td>
  2115. <code>clientCert</code></br>
  2116. <em>
  2117. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2118. External Secrets meta/v1.SecretKeySelector
  2119. </a>
  2120. </em>
  2121. </td>
  2122. <td>
  2123. </td>
  2124. </tr>
  2125. <tr>
  2126. <td>
  2127. <code>clientKey</code></br>
  2128. <em>
  2129. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2130. External Secrets meta/v1.SecretKeySelector
  2131. </a>
  2132. </em>
  2133. </td>
  2134. <td>
  2135. </td>
  2136. </tr>
  2137. </tbody>
  2138. </table>
  2139. <h3 id="external-secrets.io/v1beta1.ChefAuth">ChefAuth
  2140. </h3>
  2141. <p>
  2142. (<em>Appears on:</em>
  2143. <a href="#external-secrets.io/v1beta1.ChefProvider">ChefProvider</a>)
  2144. </p>
  2145. <p>
  2146. <p>ChefAuth contains a secretRef for credentials.</p>
  2147. </p>
  2148. <table>
  2149. <thead>
  2150. <tr>
  2151. <th>Field</th>
  2152. <th>Description</th>
  2153. </tr>
  2154. </thead>
  2155. <tbody>
  2156. <tr>
  2157. <td>
  2158. <code>secretRef</code></br>
  2159. <em>
  2160. <a href="#external-secrets.io/v1beta1.ChefAuthSecretRef">
  2161. ChefAuthSecretRef
  2162. </a>
  2163. </em>
  2164. </td>
  2165. <td>
  2166. </td>
  2167. </tr>
  2168. </tbody>
  2169. </table>
  2170. <h3 id="external-secrets.io/v1beta1.ChefAuthSecretRef">ChefAuthSecretRef
  2171. </h3>
  2172. <p>
  2173. (<em>Appears on:</em>
  2174. <a href="#external-secrets.io/v1beta1.ChefAuth">ChefAuth</a>)
  2175. </p>
  2176. <p>
  2177. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  2178. </p>
  2179. <table>
  2180. <thead>
  2181. <tr>
  2182. <th>Field</th>
  2183. <th>Description</th>
  2184. </tr>
  2185. </thead>
  2186. <tbody>
  2187. <tr>
  2188. <td>
  2189. <code>privateKeySecretRef</code></br>
  2190. <em>
  2191. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2192. External Secrets meta/v1.SecretKeySelector
  2193. </a>
  2194. </em>
  2195. </td>
  2196. <td>
  2197. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  2198. </td>
  2199. </tr>
  2200. </tbody>
  2201. </table>
  2202. <h3 id="external-secrets.io/v1beta1.ChefProvider">ChefProvider
  2203. </h3>
  2204. <p>
  2205. (<em>Appears on:</em>
  2206. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  2207. </p>
  2208. <p>
  2209. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  2210. </p>
  2211. <table>
  2212. <thead>
  2213. <tr>
  2214. <th>Field</th>
  2215. <th>Description</th>
  2216. </tr>
  2217. </thead>
  2218. <tbody>
  2219. <tr>
  2220. <td>
  2221. <code>auth</code></br>
  2222. <em>
  2223. <a href="#external-secrets.io/v1beta1.ChefAuth">
  2224. ChefAuth
  2225. </a>
  2226. </em>
  2227. </td>
  2228. <td>
  2229. <p>Auth defines the information necessary to authenticate against chef Server</p>
  2230. </td>
  2231. </tr>
  2232. <tr>
  2233. <td>
  2234. <code>username</code></br>
  2235. <em>
  2236. string
  2237. </em>
  2238. </td>
  2239. <td>
  2240. <p>UserName should be the user ID on the chef server</p>
  2241. </td>
  2242. </tr>
  2243. <tr>
  2244. <td>
  2245. <code>serverUrl</code></br>
  2246. <em>
  2247. string
  2248. </em>
  2249. </td>
  2250. <td>
  2251. <p>ServerURL is the chef server URL used to connect to. If using orgs you should include your org in the url and terminate the url with a &ldquo;/&rdquo;</p>
  2252. </td>
  2253. </tr>
  2254. </tbody>
  2255. </table>
  2256. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret
  2257. </h3>
  2258. <p>
  2259. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  2260. </p>
  2261. <table>
  2262. <thead>
  2263. <tr>
  2264. <th>Field</th>
  2265. <th>Description</th>
  2266. </tr>
  2267. </thead>
  2268. <tbody>
  2269. <tr>
  2270. <td>
  2271. <code>metadata</code></br>
  2272. <em>
  2273. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  2274. Kubernetes meta/v1.ObjectMeta
  2275. </a>
  2276. </em>
  2277. </td>
  2278. <td>
  2279. Refer to the Kubernetes API documentation for the fields of the
  2280. <code>metadata</code> field.
  2281. </td>
  2282. </tr>
  2283. <tr>
  2284. <td>
  2285. <code>spec</code></br>
  2286. <em>
  2287. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">
  2288. ClusterExternalSecretSpec
  2289. </a>
  2290. </em>
  2291. </td>
  2292. <td>
  2293. <br/>
  2294. <br/>
  2295. <table>
  2296. <tr>
  2297. <td>
  2298. <code>externalSecretSpec</code></br>
  2299. <em>
  2300. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2301. ExternalSecretSpec
  2302. </a>
  2303. </em>
  2304. </td>
  2305. <td>
  2306. <p>The spec for the ExternalSecrets to be created</p>
  2307. </td>
  2308. </tr>
  2309. <tr>
  2310. <td>
  2311. <code>externalSecretName</code></br>
  2312. <em>
  2313. string
  2314. </em>
  2315. </td>
  2316. <td>
  2317. <em>(Optional)</em>
  2318. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  2319. </td>
  2320. </tr>
  2321. <tr>
  2322. <td>
  2323. <code>externalSecretMetadata</code></br>
  2324. <em>
  2325. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadata">
  2326. ExternalSecretMetadata
  2327. </a>
  2328. </em>
  2329. </td>
  2330. <td>
  2331. <em>(Optional)</em>
  2332. <p>The metadata of the external secrets to be created</p>
  2333. </td>
  2334. </tr>
  2335. <tr>
  2336. <td>
  2337. <code>namespaceSelector</code></br>
  2338. <em>
  2339. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2340. Kubernetes meta/v1.LabelSelector
  2341. </a>
  2342. </em>
  2343. </td>
  2344. <td>
  2345. <em>(Optional)</em>
  2346. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  2347. Deprecated: Use NamespaceSelectors instead.</p>
  2348. </td>
  2349. </tr>
  2350. <tr>
  2351. <td>
  2352. <code>namespaceSelectors</code></br>
  2353. <em>
  2354. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  2355. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  2356. </a>
  2357. </em>
  2358. </td>
  2359. <td>
  2360. <em>(Optional)</em>
  2361. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  2362. </td>
  2363. </tr>
  2364. <tr>
  2365. <td>
  2366. <code>namespaces</code></br>
  2367. <em>
  2368. []string
  2369. </em>
  2370. </td>
  2371. <td>
  2372. <em>(Optional)</em>
  2373. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.</p>
  2374. </td>
  2375. </tr>
  2376. <tr>
  2377. <td>
  2378. <code>refreshTime</code></br>
  2379. <em>
  2380. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  2381. Kubernetes meta/v1.Duration
  2382. </a>
  2383. </em>
  2384. </td>
  2385. <td>
  2386. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  2387. </td>
  2388. </tr>
  2389. </table>
  2390. </td>
  2391. </tr>
  2392. <tr>
  2393. <td>
  2394. <code>status</code></br>
  2395. <em>
  2396. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">
  2397. ClusterExternalSecretStatus
  2398. </a>
  2399. </em>
  2400. </td>
  2401. <td>
  2402. </td>
  2403. </tr>
  2404. </tbody>
  2405. </table>
  2406. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  2407. (<code>string</code> alias)</p></h3>
  2408. <p>
  2409. (<em>Appears on:</em>
  2410. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  2411. </p>
  2412. <p>
  2413. </p>
  2414. <table>
  2415. <thead>
  2416. <tr>
  2417. <th>Value</th>
  2418. <th>Description</th>
  2419. </tr>
  2420. </thead>
  2421. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  2422. <td></td>
  2423. </tr></tbody>
  2424. </table>
  2425. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  2426. </h3>
  2427. <p>
  2428. (<em>Appears on:</em>
  2429. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  2430. </p>
  2431. <p>
  2432. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  2433. </p>
  2434. <table>
  2435. <thead>
  2436. <tr>
  2437. <th>Field</th>
  2438. <th>Description</th>
  2439. </tr>
  2440. </thead>
  2441. <tbody>
  2442. <tr>
  2443. <td>
  2444. <code>namespace</code></br>
  2445. <em>
  2446. string
  2447. </em>
  2448. </td>
  2449. <td>
  2450. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  2451. </td>
  2452. </tr>
  2453. <tr>
  2454. <td>
  2455. <code>reason</code></br>
  2456. <em>
  2457. string
  2458. </em>
  2459. </td>
  2460. <td>
  2461. <em>(Optional)</em>
  2462. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  2463. </td>
  2464. </tr>
  2465. </tbody>
  2466. </table>
  2467. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  2468. </h3>
  2469. <p>
  2470. (<em>Appears on:</em>
  2471. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  2472. </p>
  2473. <p>
  2474. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  2475. </p>
  2476. <table>
  2477. <thead>
  2478. <tr>
  2479. <th>Field</th>
  2480. <th>Description</th>
  2481. </tr>
  2482. </thead>
  2483. <tbody>
  2484. <tr>
  2485. <td>
  2486. <code>externalSecretSpec</code></br>
  2487. <em>
  2488. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2489. ExternalSecretSpec
  2490. </a>
  2491. </em>
  2492. </td>
  2493. <td>
  2494. <p>The spec for the ExternalSecrets to be created</p>
  2495. </td>
  2496. </tr>
  2497. <tr>
  2498. <td>
  2499. <code>externalSecretName</code></br>
  2500. <em>
  2501. string
  2502. </em>
  2503. </td>
  2504. <td>
  2505. <em>(Optional)</em>
  2506. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  2507. </td>
  2508. </tr>
  2509. <tr>
  2510. <td>
  2511. <code>externalSecretMetadata</code></br>
  2512. <em>
  2513. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadata">
  2514. ExternalSecretMetadata
  2515. </a>
  2516. </em>
  2517. </td>
  2518. <td>
  2519. <em>(Optional)</em>
  2520. <p>The metadata of the external secrets to be created</p>
  2521. </td>
  2522. </tr>
  2523. <tr>
  2524. <td>
  2525. <code>namespaceSelector</code></br>
  2526. <em>
  2527. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2528. Kubernetes meta/v1.LabelSelector
  2529. </a>
  2530. </em>
  2531. </td>
  2532. <td>
  2533. <em>(Optional)</em>
  2534. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  2535. Deprecated: Use NamespaceSelectors instead.</p>
  2536. </td>
  2537. </tr>
  2538. <tr>
  2539. <td>
  2540. <code>namespaceSelectors</code></br>
  2541. <em>
  2542. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  2543. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  2544. </a>
  2545. </em>
  2546. </td>
  2547. <td>
  2548. <em>(Optional)</em>
  2549. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  2550. </td>
  2551. </tr>
  2552. <tr>
  2553. <td>
  2554. <code>namespaces</code></br>
  2555. <em>
  2556. []string
  2557. </em>
  2558. </td>
  2559. <td>
  2560. <em>(Optional)</em>
  2561. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.</p>
  2562. </td>
  2563. </tr>
  2564. <tr>
  2565. <td>
  2566. <code>refreshTime</code></br>
  2567. <em>
  2568. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  2569. Kubernetes meta/v1.Duration
  2570. </a>
  2571. </em>
  2572. </td>
  2573. <td>
  2574. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  2575. </td>
  2576. </tr>
  2577. </tbody>
  2578. </table>
  2579. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  2580. </h3>
  2581. <p>
  2582. (<em>Appears on:</em>
  2583. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  2584. </p>
  2585. <p>
  2586. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  2587. </p>
  2588. <table>
  2589. <thead>
  2590. <tr>
  2591. <th>Field</th>
  2592. <th>Description</th>
  2593. </tr>
  2594. </thead>
  2595. <tbody>
  2596. <tr>
  2597. <td>
  2598. <code>externalSecretName</code></br>
  2599. <em>
  2600. string
  2601. </em>
  2602. </td>
  2603. <td>
  2604. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  2605. </td>
  2606. </tr>
  2607. <tr>
  2608. <td>
  2609. <code>failedNamespaces</code></br>
  2610. <em>
  2611. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">
  2612. []ClusterExternalSecretNamespaceFailure
  2613. </a>
  2614. </em>
  2615. </td>
  2616. <td>
  2617. <em>(Optional)</em>
  2618. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  2619. </td>
  2620. </tr>
  2621. <tr>
  2622. <td>
  2623. <code>provisionedNamespaces</code></br>
  2624. <em>
  2625. []string
  2626. </em>
  2627. </td>
  2628. <td>
  2629. <em>(Optional)</em>
  2630. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  2631. </td>
  2632. </tr>
  2633. <tr>
  2634. <td>
  2635. <code>conditions</code></br>
  2636. <em>
  2637. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">
  2638. []ClusterExternalSecretStatusCondition
  2639. </a>
  2640. </em>
  2641. </td>
  2642. <td>
  2643. <em>(Optional)</em>
  2644. </td>
  2645. </tr>
  2646. </tbody>
  2647. </table>
  2648. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  2649. </h3>
  2650. <p>
  2651. (<em>Appears on:</em>
  2652. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  2653. </p>
  2654. <p>
  2655. </p>
  2656. <table>
  2657. <thead>
  2658. <tr>
  2659. <th>Field</th>
  2660. <th>Description</th>
  2661. </tr>
  2662. </thead>
  2663. <tbody>
  2664. <tr>
  2665. <td>
  2666. <code>type</code></br>
  2667. <em>
  2668. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretConditionType">
  2669. ClusterExternalSecretConditionType
  2670. </a>
  2671. </em>
  2672. </td>
  2673. <td>
  2674. </td>
  2675. </tr>
  2676. <tr>
  2677. <td>
  2678. <code>status</code></br>
  2679. <em>
  2680. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  2681. Kubernetes core/v1.ConditionStatus
  2682. </a>
  2683. </em>
  2684. </td>
  2685. <td>
  2686. </td>
  2687. </tr>
  2688. <tr>
  2689. <td>
  2690. <code>message</code></br>
  2691. <em>
  2692. string
  2693. </em>
  2694. </td>
  2695. <td>
  2696. <em>(Optional)</em>
  2697. </td>
  2698. </tr>
  2699. </tbody>
  2700. </table>
  2701. <h3 id="external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore
  2702. </h3>
  2703. <p>
  2704. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  2705. </p>
  2706. <table>
  2707. <thead>
  2708. <tr>
  2709. <th>Field</th>
  2710. <th>Description</th>
  2711. </tr>
  2712. </thead>
  2713. <tbody>
  2714. <tr>
  2715. <td>
  2716. <code>metadata</code></br>
  2717. <em>
  2718. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  2719. Kubernetes meta/v1.ObjectMeta
  2720. </a>
  2721. </em>
  2722. </td>
  2723. <td>
  2724. Refer to the Kubernetes API documentation for the fields of the
  2725. <code>metadata</code> field.
  2726. </td>
  2727. </tr>
  2728. <tr>
  2729. <td>
  2730. <code>spec</code></br>
  2731. <em>
  2732. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  2733. SecretStoreSpec
  2734. </a>
  2735. </em>
  2736. </td>
  2737. <td>
  2738. <br/>
  2739. <br/>
  2740. <table>
  2741. <tr>
  2742. <td>
  2743. <code>controller</code></br>
  2744. <em>
  2745. string
  2746. </em>
  2747. </td>
  2748. <td>
  2749. <em>(Optional)</em>
  2750. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  2751. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  2752. </td>
  2753. </tr>
  2754. <tr>
  2755. <td>
  2756. <code>provider</code></br>
  2757. <em>
  2758. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  2759. SecretStoreProvider
  2760. </a>
  2761. </em>
  2762. </td>
  2763. <td>
  2764. <p>Used to configure the provider. Only one provider may be set</p>
  2765. </td>
  2766. </tr>
  2767. <tr>
  2768. <td>
  2769. <code>retrySettings</code></br>
  2770. <em>
  2771. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  2772. SecretStoreRetrySettings
  2773. </a>
  2774. </em>
  2775. </td>
  2776. <td>
  2777. <em>(Optional)</em>
  2778. <p>Used to configure http retries if failed</p>
  2779. </td>
  2780. </tr>
  2781. <tr>
  2782. <td>
  2783. <code>refreshInterval</code></br>
  2784. <em>
  2785. int
  2786. </em>
  2787. </td>
  2788. <td>
  2789. <em>(Optional)</em>
  2790. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  2791. </td>
  2792. </tr>
  2793. <tr>
  2794. <td>
  2795. <code>conditions</code></br>
  2796. <em>
  2797. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  2798. []ClusterSecretStoreCondition
  2799. </a>
  2800. </em>
  2801. </td>
  2802. <td>
  2803. <em>(Optional)</em>
  2804. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  2805. </td>
  2806. </tr>
  2807. </table>
  2808. </td>
  2809. </tr>
  2810. <tr>
  2811. <td>
  2812. <code>status</code></br>
  2813. <em>
  2814. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  2815. SecretStoreStatus
  2816. </a>
  2817. </em>
  2818. </td>
  2819. <td>
  2820. </td>
  2821. </tr>
  2822. </tbody>
  2823. </table>
  2824. <h3 id="external-secrets.io/v1beta1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  2825. </h3>
  2826. <p>
  2827. (<em>Appears on:</em>
  2828. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  2829. </p>
  2830. <p>
  2831. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  2832. for a ClusterSecretStore instance.</p>
  2833. </p>
  2834. <table>
  2835. <thead>
  2836. <tr>
  2837. <th>Field</th>
  2838. <th>Description</th>
  2839. </tr>
  2840. </thead>
  2841. <tbody>
  2842. <tr>
  2843. <td>
  2844. <code>namespaceSelector</code></br>
  2845. <em>
  2846. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2847. Kubernetes meta/v1.LabelSelector
  2848. </a>
  2849. </em>
  2850. </td>
  2851. <td>
  2852. <em>(Optional)</em>
  2853. <p>Choose namespace using a labelSelector</p>
  2854. </td>
  2855. </tr>
  2856. <tr>
  2857. <td>
  2858. <code>namespaces</code></br>
  2859. <em>
  2860. []string
  2861. </em>
  2862. </td>
  2863. <td>
  2864. <p>Choose namespaces by name</p>
  2865. </td>
  2866. </tr>
  2867. </tbody>
  2868. </table>
  2869. <h3 id="external-secrets.io/v1beta1.ConjurAPIKey">ConjurAPIKey
  2870. </h3>
  2871. <p>
  2872. (<em>Appears on:</em>
  2873. <a href="#external-secrets.io/v1beta1.ConjurAuth">ConjurAuth</a>)
  2874. </p>
  2875. <p>
  2876. </p>
  2877. <table>
  2878. <thead>
  2879. <tr>
  2880. <th>Field</th>
  2881. <th>Description</th>
  2882. </tr>
  2883. </thead>
  2884. <tbody>
  2885. <tr>
  2886. <td>
  2887. <code>account</code></br>
  2888. <em>
  2889. string
  2890. </em>
  2891. </td>
  2892. <td>
  2893. </td>
  2894. </tr>
  2895. <tr>
  2896. <td>
  2897. <code>userRef</code></br>
  2898. <em>
  2899. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2900. External Secrets meta/v1.SecretKeySelector
  2901. </a>
  2902. </em>
  2903. </td>
  2904. <td>
  2905. </td>
  2906. </tr>
  2907. <tr>
  2908. <td>
  2909. <code>apiKeyRef</code></br>
  2910. <em>
  2911. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2912. External Secrets meta/v1.SecretKeySelector
  2913. </a>
  2914. </em>
  2915. </td>
  2916. <td>
  2917. </td>
  2918. </tr>
  2919. </tbody>
  2920. </table>
  2921. <h3 id="external-secrets.io/v1beta1.ConjurAuth">ConjurAuth
  2922. </h3>
  2923. <p>
  2924. (<em>Appears on:</em>
  2925. <a href="#external-secrets.io/v1beta1.ConjurProvider">ConjurProvider</a>)
  2926. </p>
  2927. <p>
  2928. </p>
  2929. <table>
  2930. <thead>
  2931. <tr>
  2932. <th>Field</th>
  2933. <th>Description</th>
  2934. </tr>
  2935. </thead>
  2936. <tbody>
  2937. <tr>
  2938. <td>
  2939. <code>apikey</code></br>
  2940. <em>
  2941. <a href="#external-secrets.io/v1beta1.ConjurAPIKey">
  2942. ConjurAPIKey
  2943. </a>
  2944. </em>
  2945. </td>
  2946. <td>
  2947. <em>(Optional)</em>
  2948. </td>
  2949. </tr>
  2950. <tr>
  2951. <td>
  2952. <code>jwt</code></br>
  2953. <em>
  2954. <a href="#external-secrets.io/v1beta1.ConjurJWT">
  2955. ConjurJWT
  2956. </a>
  2957. </em>
  2958. </td>
  2959. <td>
  2960. <em>(Optional)</em>
  2961. </td>
  2962. </tr>
  2963. </tbody>
  2964. </table>
  2965. <h3 id="external-secrets.io/v1beta1.ConjurJWT">ConjurJWT
  2966. </h3>
  2967. <p>
  2968. (<em>Appears on:</em>
  2969. <a href="#external-secrets.io/v1beta1.ConjurAuth">ConjurAuth</a>)
  2970. </p>
  2971. <p>
  2972. </p>
  2973. <table>
  2974. <thead>
  2975. <tr>
  2976. <th>Field</th>
  2977. <th>Description</th>
  2978. </tr>
  2979. </thead>
  2980. <tbody>
  2981. <tr>
  2982. <td>
  2983. <code>account</code></br>
  2984. <em>
  2985. string
  2986. </em>
  2987. </td>
  2988. <td>
  2989. </td>
  2990. </tr>
  2991. <tr>
  2992. <td>
  2993. <code>serviceID</code></br>
  2994. <em>
  2995. string
  2996. </em>
  2997. </td>
  2998. <td>
  2999. <p>The conjur authn jwt webservice id</p>
  3000. </td>
  3001. </tr>
  3002. <tr>
  3003. <td>
  3004. <code>hostId</code></br>
  3005. <em>
  3006. string
  3007. </em>
  3008. </td>
  3009. <td>
  3010. <em>(Optional)</em>
  3011. <p>Optional HostID for JWT authentication. This may be used depending
  3012. on how the Conjur JWT authenticator policy is configured.</p>
  3013. </td>
  3014. </tr>
  3015. <tr>
  3016. <td>
  3017. <code>secretRef</code></br>
  3018. <em>
  3019. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3020. External Secrets meta/v1.SecretKeySelector
  3021. </a>
  3022. </em>
  3023. </td>
  3024. <td>
  3025. <em>(Optional)</em>
  3026. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  3027. authenticate with Conjur using the JWT authentication method.</p>
  3028. </td>
  3029. </tr>
  3030. <tr>
  3031. <td>
  3032. <code>serviceAccountRef</code></br>
  3033. <em>
  3034. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  3035. External Secrets meta/v1.ServiceAccountSelector
  3036. </a>
  3037. </em>
  3038. </td>
  3039. <td>
  3040. <em>(Optional)</em>
  3041. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  3042. a token for with the <code>TokenRequest</code> API.</p>
  3043. </td>
  3044. </tr>
  3045. </tbody>
  3046. </table>
  3047. <h3 id="external-secrets.io/v1beta1.ConjurProvider">ConjurProvider
  3048. </h3>
  3049. <p>
  3050. (<em>Appears on:</em>
  3051. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3052. </p>
  3053. <p>
  3054. </p>
  3055. <table>
  3056. <thead>
  3057. <tr>
  3058. <th>Field</th>
  3059. <th>Description</th>
  3060. </tr>
  3061. </thead>
  3062. <tbody>
  3063. <tr>
  3064. <td>
  3065. <code>url</code></br>
  3066. <em>
  3067. string
  3068. </em>
  3069. </td>
  3070. <td>
  3071. </td>
  3072. </tr>
  3073. <tr>
  3074. <td>
  3075. <code>caBundle</code></br>
  3076. <em>
  3077. string
  3078. </em>
  3079. </td>
  3080. <td>
  3081. <em>(Optional)</em>
  3082. </td>
  3083. </tr>
  3084. <tr>
  3085. <td>
  3086. <code>caProvider</code></br>
  3087. <em>
  3088. <a href="#external-secrets.io/v1beta1.CAProvider">
  3089. CAProvider
  3090. </a>
  3091. </em>
  3092. </td>
  3093. <td>
  3094. <em>(Optional)</em>
  3095. </td>
  3096. </tr>
  3097. <tr>
  3098. <td>
  3099. <code>auth</code></br>
  3100. <em>
  3101. <a href="#external-secrets.io/v1beta1.ConjurAuth">
  3102. ConjurAuth
  3103. </a>
  3104. </em>
  3105. </td>
  3106. <td>
  3107. </td>
  3108. </tr>
  3109. </tbody>
  3110. </table>
  3111. <h3 id="external-secrets.io/v1beta1.DelineaProvider">DelineaProvider
  3112. </h3>
  3113. <p>
  3114. (<em>Appears on:</em>
  3115. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3116. </p>
  3117. <p>
  3118. <p>See <a href="https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go">https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go</a>.</p>
  3119. </p>
  3120. <table>
  3121. <thead>
  3122. <tr>
  3123. <th>Field</th>
  3124. <th>Description</th>
  3125. </tr>
  3126. </thead>
  3127. <tbody>
  3128. <tr>
  3129. <td>
  3130. <code>clientId</code></br>
  3131. <em>
  3132. <a href="#external-secrets.io/v1beta1.DelineaProviderSecretRef">
  3133. DelineaProviderSecretRef
  3134. </a>
  3135. </em>
  3136. </td>
  3137. <td>
  3138. <p>ClientID is the non-secret part of the credential.</p>
  3139. </td>
  3140. </tr>
  3141. <tr>
  3142. <td>
  3143. <code>clientSecret</code></br>
  3144. <em>
  3145. <a href="#external-secrets.io/v1beta1.DelineaProviderSecretRef">
  3146. DelineaProviderSecretRef
  3147. </a>
  3148. </em>
  3149. </td>
  3150. <td>
  3151. <p>ClientSecret is the secret part of the credential.</p>
  3152. </td>
  3153. </tr>
  3154. <tr>
  3155. <td>
  3156. <code>tenant</code></br>
  3157. <em>
  3158. string
  3159. </em>
  3160. </td>
  3161. <td>
  3162. <p>Tenant is the chosen hostname / site name.</p>
  3163. </td>
  3164. </tr>
  3165. <tr>
  3166. <td>
  3167. <code>urlTemplate</code></br>
  3168. <em>
  3169. string
  3170. </em>
  3171. </td>
  3172. <td>
  3173. <em>(Optional)</em>
  3174. <p>URLTemplate
  3175. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  3176. </td>
  3177. </tr>
  3178. <tr>
  3179. <td>
  3180. <code>tld</code></br>
  3181. <em>
  3182. string
  3183. </em>
  3184. </td>
  3185. <td>
  3186. <em>(Optional)</em>
  3187. <p>TLD is based on the server location that was chosen during provisioning.
  3188. If unset, defaults to &ldquo;com&rdquo;.</p>
  3189. </td>
  3190. </tr>
  3191. </tbody>
  3192. </table>
  3193. <h3 id="external-secrets.io/v1beta1.DelineaProviderSecretRef">DelineaProviderSecretRef
  3194. </h3>
  3195. <p>
  3196. (<em>Appears on:</em>
  3197. <a href="#external-secrets.io/v1beta1.DelineaProvider">DelineaProvider</a>)
  3198. </p>
  3199. <p>
  3200. </p>
  3201. <table>
  3202. <thead>
  3203. <tr>
  3204. <th>Field</th>
  3205. <th>Description</th>
  3206. </tr>
  3207. </thead>
  3208. <tbody>
  3209. <tr>
  3210. <td>
  3211. <code>value</code></br>
  3212. <em>
  3213. string
  3214. </em>
  3215. </td>
  3216. <td>
  3217. <em>(Optional)</em>
  3218. <p>Value can be specified directly to set a value without using a secret.</p>
  3219. </td>
  3220. </tr>
  3221. <tr>
  3222. <td>
  3223. <code>secretRef</code></br>
  3224. <em>
  3225. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3226. External Secrets meta/v1.SecretKeySelector
  3227. </a>
  3228. </em>
  3229. </td>
  3230. <td>
  3231. <em>(Optional)</em>
  3232. <p>SecretRef references a key in a secret that will be used as value.</p>
  3233. </td>
  3234. </tr>
  3235. </tbody>
  3236. </table>
  3237. <h3 id="external-secrets.io/v1beta1.DopplerAuth">DopplerAuth
  3238. </h3>
  3239. <p>
  3240. (<em>Appears on:</em>
  3241. <a href="#external-secrets.io/v1beta1.DopplerProvider">DopplerProvider</a>)
  3242. </p>
  3243. <p>
  3244. </p>
  3245. <table>
  3246. <thead>
  3247. <tr>
  3248. <th>Field</th>
  3249. <th>Description</th>
  3250. </tr>
  3251. </thead>
  3252. <tbody>
  3253. <tr>
  3254. <td>
  3255. <code>secretRef</code></br>
  3256. <em>
  3257. <a href="#external-secrets.io/v1beta1.DopplerAuthSecretRef">
  3258. DopplerAuthSecretRef
  3259. </a>
  3260. </em>
  3261. </td>
  3262. <td>
  3263. </td>
  3264. </tr>
  3265. </tbody>
  3266. </table>
  3267. <h3 id="external-secrets.io/v1beta1.DopplerAuthSecretRef">DopplerAuthSecretRef
  3268. </h3>
  3269. <p>
  3270. (<em>Appears on:</em>
  3271. <a href="#external-secrets.io/v1beta1.DopplerAuth">DopplerAuth</a>)
  3272. </p>
  3273. <p>
  3274. </p>
  3275. <table>
  3276. <thead>
  3277. <tr>
  3278. <th>Field</th>
  3279. <th>Description</th>
  3280. </tr>
  3281. </thead>
  3282. <tbody>
  3283. <tr>
  3284. <td>
  3285. <code>dopplerToken</code></br>
  3286. <em>
  3287. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3288. External Secrets meta/v1.SecretKeySelector
  3289. </a>
  3290. </em>
  3291. </td>
  3292. <td>
  3293. <p>The DopplerToken is used for authentication.
  3294. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  3295. The Key attribute defaults to dopplerToken if not specified.</p>
  3296. </td>
  3297. </tr>
  3298. </tbody>
  3299. </table>
  3300. <h3 id="external-secrets.io/v1beta1.DopplerProvider">DopplerProvider
  3301. </h3>
  3302. <p>
  3303. (<em>Appears on:</em>
  3304. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3305. </p>
  3306. <p>
  3307. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  3308. Project and Config are required if not using a Service Token.</p>
  3309. </p>
  3310. <table>
  3311. <thead>
  3312. <tr>
  3313. <th>Field</th>
  3314. <th>Description</th>
  3315. </tr>
  3316. </thead>
  3317. <tbody>
  3318. <tr>
  3319. <td>
  3320. <code>auth</code></br>
  3321. <em>
  3322. <a href="#external-secrets.io/v1beta1.DopplerAuth">
  3323. DopplerAuth
  3324. </a>
  3325. </em>
  3326. </td>
  3327. <td>
  3328. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  3329. </td>
  3330. </tr>
  3331. <tr>
  3332. <td>
  3333. <code>project</code></br>
  3334. <em>
  3335. string
  3336. </em>
  3337. </td>
  3338. <td>
  3339. <em>(Optional)</em>
  3340. <p>Doppler project (required if not using a Service Token)</p>
  3341. </td>
  3342. </tr>
  3343. <tr>
  3344. <td>
  3345. <code>config</code></br>
  3346. <em>
  3347. string
  3348. </em>
  3349. </td>
  3350. <td>
  3351. <em>(Optional)</em>
  3352. <p>Doppler config (required if not using a Service Token)</p>
  3353. </td>
  3354. </tr>
  3355. <tr>
  3356. <td>
  3357. <code>nameTransformer</code></br>
  3358. <em>
  3359. string
  3360. </em>
  3361. </td>
  3362. <td>
  3363. <em>(Optional)</em>
  3364. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  3365. </td>
  3366. </tr>
  3367. <tr>
  3368. <td>
  3369. <code>format</code></br>
  3370. <em>
  3371. string
  3372. </em>
  3373. </td>
  3374. <td>
  3375. <em>(Optional)</em>
  3376. <p>Format enables the downloading of secrets as a file (string)</p>
  3377. </td>
  3378. </tr>
  3379. </tbody>
  3380. </table>
  3381. <h3 id="external-secrets.io/v1beta1.ExternalSecret">ExternalSecret
  3382. </h3>
  3383. <p>
  3384. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  3385. </p>
  3386. <table>
  3387. <thead>
  3388. <tr>
  3389. <th>Field</th>
  3390. <th>Description</th>
  3391. </tr>
  3392. </thead>
  3393. <tbody>
  3394. <tr>
  3395. <td>
  3396. <code>metadata</code></br>
  3397. <em>
  3398. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3399. Kubernetes meta/v1.ObjectMeta
  3400. </a>
  3401. </em>
  3402. </td>
  3403. <td>
  3404. Refer to the Kubernetes API documentation for the fields of the
  3405. <code>metadata</code> field.
  3406. </td>
  3407. </tr>
  3408. <tr>
  3409. <td>
  3410. <code>spec</code></br>
  3411. <em>
  3412. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  3413. ExternalSecretSpec
  3414. </a>
  3415. </em>
  3416. </td>
  3417. <td>
  3418. <br/>
  3419. <br/>
  3420. <table>
  3421. <tr>
  3422. <td>
  3423. <code>secretStoreRef</code></br>
  3424. <em>
  3425. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  3426. SecretStoreRef
  3427. </a>
  3428. </em>
  3429. </td>
  3430. <td>
  3431. <em>(Optional)</em>
  3432. </td>
  3433. </tr>
  3434. <tr>
  3435. <td>
  3436. <code>target</code></br>
  3437. <em>
  3438. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  3439. ExternalSecretTarget
  3440. </a>
  3441. </em>
  3442. </td>
  3443. <td>
  3444. <em>(Optional)</em>
  3445. </td>
  3446. </tr>
  3447. <tr>
  3448. <td>
  3449. <code>refreshInterval</code></br>
  3450. <em>
  3451. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3452. Kubernetes meta/v1.Duration
  3453. </a>
  3454. </em>
  3455. </td>
  3456. <td>
  3457. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  3458. 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;
  3459. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  3460. </td>
  3461. </tr>
  3462. <tr>
  3463. <td>
  3464. <code>data</code></br>
  3465. <em>
  3466. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  3467. []ExternalSecretData
  3468. </a>
  3469. </em>
  3470. </td>
  3471. <td>
  3472. <em>(Optional)</em>
  3473. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  3474. </td>
  3475. </tr>
  3476. <tr>
  3477. <td>
  3478. <code>dataFrom</code></br>
  3479. <em>
  3480. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  3481. []ExternalSecretDataFromRemoteRef
  3482. </a>
  3483. </em>
  3484. </td>
  3485. <td>
  3486. <em>(Optional)</em>
  3487. <p>DataFrom is used to fetch all properties from a specific Provider data
  3488. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  3489. </td>
  3490. </tr>
  3491. </table>
  3492. </td>
  3493. </tr>
  3494. <tr>
  3495. <td>
  3496. <code>status</code></br>
  3497. <em>
  3498. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">
  3499. ExternalSecretStatus
  3500. </a>
  3501. </em>
  3502. </td>
  3503. <td>
  3504. </td>
  3505. </tr>
  3506. </tbody>
  3507. </table>
  3508. <h3 id="external-secrets.io/v1beta1.ExternalSecretConditionType">ExternalSecretConditionType
  3509. (<code>string</code> alias)</p></h3>
  3510. <p>
  3511. (<em>Appears on:</em>
  3512. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  3513. </p>
  3514. <p>
  3515. </p>
  3516. <table>
  3517. <thead>
  3518. <tr>
  3519. <th>Value</th>
  3520. <th>Description</th>
  3521. </tr>
  3522. </thead>
  3523. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  3524. <td></td>
  3525. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  3526. <td></td>
  3527. </tr></tbody>
  3528. </table>
  3529. <h3 id="external-secrets.io/v1beta1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  3530. (<code>string</code> alias)</p></h3>
  3531. <p>
  3532. (<em>Appears on:</em>
  3533. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  3534. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3535. </p>
  3536. <p>
  3537. </p>
  3538. <table>
  3539. <thead>
  3540. <tr>
  3541. <th>Value</th>
  3542. <th>Description</th>
  3543. </tr>
  3544. </thead>
  3545. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  3546. <td></td>
  3547. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  3548. <td></td>
  3549. </tr></tbody>
  3550. </table>
  3551. <h3 id="external-secrets.io/v1beta1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  3552. (<code>string</code> alias)</p></h3>
  3553. <p>
  3554. (<em>Appears on:</em>
  3555. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  3556. </p>
  3557. <p>
  3558. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  3559. </p>
  3560. <table>
  3561. <thead>
  3562. <tr>
  3563. <th>Value</th>
  3564. <th>Description</th>
  3565. </tr>
  3566. </thead>
  3567. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  3568. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  3569. </td>
  3570. </tr><tr><td><p>&#34;None&#34;</p></td>
  3571. <td><p>None does not create a Secret (future use with injector).</p>
  3572. </td>
  3573. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  3574. <td><p>Orphan creates the Secret and does not set the ownerReference.
  3575. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  3576. </td>
  3577. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  3578. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  3579. </td>
  3580. </tr></tbody>
  3581. </table>
  3582. <h3 id="external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData
  3583. </h3>
  3584. <p>
  3585. (<em>Appears on:</em>
  3586. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3587. </p>
  3588. <p>
  3589. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  3590. </p>
  3591. <table>
  3592. <thead>
  3593. <tr>
  3594. <th>Field</th>
  3595. <th>Description</th>
  3596. </tr>
  3597. </thead>
  3598. <tbody>
  3599. <tr>
  3600. <td>
  3601. <code>secretKey</code></br>
  3602. <em>
  3603. string
  3604. </em>
  3605. </td>
  3606. <td>
  3607. <p>SecretKey defines the key in which the controller stores
  3608. the value. This is the key in the Kind=Secret</p>
  3609. </td>
  3610. </tr>
  3611. <tr>
  3612. <td>
  3613. <code>remoteRef</code></br>
  3614. <em>
  3615. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  3616. ExternalSecretDataRemoteRef
  3617. </a>
  3618. </em>
  3619. </td>
  3620. <td>
  3621. <p>RemoteRef points to the remote secret and defines
  3622. which secret (version/property/..) to fetch.</p>
  3623. </td>
  3624. </tr>
  3625. <tr>
  3626. <td>
  3627. <code>sourceRef</code></br>
  3628. <em>
  3629. <a href="#external-secrets.io/v1beta1.StoreSourceRef">
  3630. StoreSourceRef
  3631. </a>
  3632. </em>
  3633. </td>
  3634. <td>
  3635. <p>SourceRef allows you to override the source
  3636. from which the value will pulled from.</p>
  3637. </td>
  3638. </tr>
  3639. </tbody>
  3640. </table>
  3641. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  3642. </h3>
  3643. <p>
  3644. (<em>Appears on:</em>
  3645. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3646. </p>
  3647. <p>
  3648. </p>
  3649. <table>
  3650. <thead>
  3651. <tr>
  3652. <th>Field</th>
  3653. <th>Description</th>
  3654. </tr>
  3655. </thead>
  3656. <tbody>
  3657. <tr>
  3658. <td>
  3659. <code>extract</code></br>
  3660. <em>
  3661. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  3662. ExternalSecretDataRemoteRef
  3663. </a>
  3664. </em>
  3665. </td>
  3666. <td>
  3667. <em>(Optional)</em>
  3668. <p>Used to extract multiple key/value pairs from one secret
  3669. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  3670. </td>
  3671. </tr>
  3672. <tr>
  3673. <td>
  3674. <code>find</code></br>
  3675. <em>
  3676. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">
  3677. ExternalSecretFind
  3678. </a>
  3679. </em>
  3680. </td>
  3681. <td>
  3682. <em>(Optional)</em>
  3683. <p>Used to find secrets based on tags or regular expressions
  3684. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  3685. </td>
  3686. </tr>
  3687. <tr>
  3688. <td>
  3689. <code>rewrite</code></br>
  3690. <em>
  3691. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">
  3692. []ExternalSecretRewrite
  3693. </a>
  3694. </em>
  3695. </td>
  3696. <td>
  3697. <em>(Optional)</em>
  3698. <p>Used to rewrite secret Keys after getting them from the secret Provider
  3699. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  3700. </td>
  3701. </tr>
  3702. <tr>
  3703. <td>
  3704. <code>sourceRef</code></br>
  3705. <em>
  3706. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">
  3707. StoreGeneratorSourceRef
  3708. </a>
  3709. </em>
  3710. </td>
  3711. <td>
  3712. <p>SourceRef points to a store or generator
  3713. which contains secret values ready to use.
  3714. Use this in combination with Extract or Find pull values out of
  3715. a specific SecretStore.
  3716. When sourceRef points to a generator Extract or Find is not supported.
  3717. The generator returns a static map of values</p>
  3718. </td>
  3719. </tr>
  3720. </tbody>
  3721. </table>
  3722. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  3723. </h3>
  3724. <p>
  3725. (<em>Appears on:</em>
  3726. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>,
  3727. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  3728. </p>
  3729. <p>
  3730. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  3731. </p>
  3732. <table>
  3733. <thead>
  3734. <tr>
  3735. <th>Field</th>
  3736. <th>Description</th>
  3737. </tr>
  3738. </thead>
  3739. <tbody>
  3740. <tr>
  3741. <td>
  3742. <code>key</code></br>
  3743. <em>
  3744. string
  3745. </em>
  3746. </td>
  3747. <td>
  3748. <p>Key is the key used in the Provider, mandatory</p>
  3749. </td>
  3750. </tr>
  3751. <tr>
  3752. <td>
  3753. <code>metadataPolicy</code></br>
  3754. <em>
  3755. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">
  3756. ExternalSecretMetadataPolicy
  3757. </a>
  3758. </em>
  3759. </td>
  3760. <td>
  3761. <em>(Optional)</em>
  3762. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  3763. </td>
  3764. </tr>
  3765. <tr>
  3766. <td>
  3767. <code>property</code></br>
  3768. <em>
  3769. string
  3770. </em>
  3771. </td>
  3772. <td>
  3773. <em>(Optional)</em>
  3774. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  3775. </td>
  3776. </tr>
  3777. <tr>
  3778. <td>
  3779. <code>version</code></br>
  3780. <em>
  3781. string
  3782. </em>
  3783. </td>
  3784. <td>
  3785. <em>(Optional)</em>
  3786. <p>Used to select a specific version of the Provider value, if supported</p>
  3787. </td>
  3788. </tr>
  3789. <tr>
  3790. <td>
  3791. <code>conversionStrategy</code></br>
  3792. <em>
  3793. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  3794. ExternalSecretConversionStrategy
  3795. </a>
  3796. </em>
  3797. </td>
  3798. <td>
  3799. <em>(Optional)</em>
  3800. <p>Used to define a conversion Strategy</p>
  3801. </td>
  3802. </tr>
  3803. <tr>
  3804. <td>
  3805. <code>decodingStrategy</code></br>
  3806. <em>
  3807. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  3808. ExternalSecretDecodingStrategy
  3809. </a>
  3810. </em>
  3811. </td>
  3812. <td>
  3813. <em>(Optional)</em>
  3814. <p>Used to define a decoding Strategy</p>
  3815. </td>
  3816. </tr>
  3817. </tbody>
  3818. </table>
  3819. <h3 id="external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  3820. (<code>string</code> alias)</p></h3>
  3821. <p>
  3822. (<em>Appears on:</em>
  3823. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  3824. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3825. </p>
  3826. <p>
  3827. </p>
  3828. <table>
  3829. <thead>
  3830. <tr>
  3831. <th>Value</th>
  3832. <th>Description</th>
  3833. </tr>
  3834. </thead>
  3835. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  3836. <td></td>
  3837. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  3838. <td></td>
  3839. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  3840. <td></td>
  3841. </tr><tr><td><p>&#34;None&#34;</p></td>
  3842. <td></td>
  3843. </tr></tbody>
  3844. </table>
  3845. <h3 id="external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  3846. (<code>string</code> alias)</p></h3>
  3847. <p>
  3848. (<em>Appears on:</em>
  3849. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  3850. </p>
  3851. <p>
  3852. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  3853. </p>
  3854. <table>
  3855. <thead>
  3856. <tr>
  3857. <th>Value</th>
  3858. <th>Description</th>
  3859. </tr>
  3860. </thead>
  3861. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  3862. <td><p>Delete deletes the secret if all provider secrets are deleted.
  3863. If a secret gets deleted on the provider side and is not accessible
  3864. anymore this is not considered an error and the ExternalSecret
  3865. does not go into SecretSyncedError status.</p>
  3866. </td>
  3867. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  3868. <td><p>Merge removes keys in the secret, but not the secret itself.
  3869. If a secret gets deleted on the provider side and is not accessible
  3870. anymore this is not considered an error and the ExternalSecret
  3871. does not go into SecretSyncedError status.</p>
  3872. </td>
  3873. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  3874. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  3875. If a provider secret does not exist the ExternalSecret gets into the
  3876. SecretSyncedError status.</p>
  3877. </td>
  3878. </tr></tbody>
  3879. </table>
  3880. <h3 id="external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind
  3881. </h3>
  3882. <p>
  3883. (<em>Appears on:</em>
  3884. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  3885. </p>
  3886. <p>
  3887. </p>
  3888. <table>
  3889. <thead>
  3890. <tr>
  3891. <th>Field</th>
  3892. <th>Description</th>
  3893. </tr>
  3894. </thead>
  3895. <tbody>
  3896. <tr>
  3897. <td>
  3898. <code>path</code></br>
  3899. <em>
  3900. string
  3901. </em>
  3902. </td>
  3903. <td>
  3904. <em>(Optional)</em>
  3905. <p>A root path to start the find operations.</p>
  3906. </td>
  3907. </tr>
  3908. <tr>
  3909. <td>
  3910. <code>name</code></br>
  3911. <em>
  3912. <a href="#external-secrets.io/v1beta1.FindName">
  3913. FindName
  3914. </a>
  3915. </em>
  3916. </td>
  3917. <td>
  3918. <em>(Optional)</em>
  3919. <p>Finds secrets based on the name.</p>
  3920. </td>
  3921. </tr>
  3922. <tr>
  3923. <td>
  3924. <code>tags</code></br>
  3925. <em>
  3926. map[string]string
  3927. </em>
  3928. </td>
  3929. <td>
  3930. <em>(Optional)</em>
  3931. <p>Find secrets based on tags.</p>
  3932. </td>
  3933. </tr>
  3934. <tr>
  3935. <td>
  3936. <code>conversionStrategy</code></br>
  3937. <em>
  3938. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  3939. ExternalSecretConversionStrategy
  3940. </a>
  3941. </em>
  3942. </td>
  3943. <td>
  3944. <em>(Optional)</em>
  3945. <p>Used to define a conversion Strategy</p>
  3946. </td>
  3947. </tr>
  3948. <tr>
  3949. <td>
  3950. <code>decodingStrategy</code></br>
  3951. <em>
  3952. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  3953. ExternalSecretDecodingStrategy
  3954. </a>
  3955. </em>
  3956. </td>
  3957. <td>
  3958. <em>(Optional)</em>
  3959. <p>Used to define a decoding Strategy</p>
  3960. </td>
  3961. </tr>
  3962. </tbody>
  3963. </table>
  3964. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadata">ExternalSecretMetadata
  3965. </h3>
  3966. <p>
  3967. (<em>Appears on:</em>
  3968. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  3969. </p>
  3970. <p>
  3971. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  3972. </p>
  3973. <table>
  3974. <thead>
  3975. <tr>
  3976. <th>Field</th>
  3977. <th>Description</th>
  3978. </tr>
  3979. </thead>
  3980. <tbody>
  3981. <tr>
  3982. <td>
  3983. <code>annotations</code></br>
  3984. <em>
  3985. map[string]string
  3986. </em>
  3987. </td>
  3988. <td>
  3989. <em>(Optional)</em>
  3990. </td>
  3991. </tr>
  3992. <tr>
  3993. <td>
  3994. <code>labels</code></br>
  3995. <em>
  3996. map[string]string
  3997. </em>
  3998. </td>
  3999. <td>
  4000. <em>(Optional)</em>
  4001. </td>
  4002. </tr>
  4003. </tbody>
  4004. </table>
  4005. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  4006. (<code>string</code> alias)</p></h3>
  4007. <p>
  4008. (<em>Appears on:</em>
  4009. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  4010. </p>
  4011. <p>
  4012. </p>
  4013. <table>
  4014. <thead>
  4015. <tr>
  4016. <th>Value</th>
  4017. <th>Description</th>
  4018. </tr>
  4019. </thead>
  4020. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  4021. <td></td>
  4022. </tr><tr><td><p>&#34;None&#34;</p></td>
  4023. <td></td>
  4024. </tr></tbody>
  4025. </table>
  4026. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite
  4027. </h3>
  4028. <p>
  4029. (<em>Appears on:</em>
  4030. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4031. </p>
  4032. <p>
  4033. </p>
  4034. <table>
  4035. <thead>
  4036. <tr>
  4037. <th>Field</th>
  4038. <th>Description</th>
  4039. </tr>
  4040. </thead>
  4041. <tbody>
  4042. <tr>
  4043. <td>
  4044. <code>regexp</code></br>
  4045. <em>
  4046. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">
  4047. ExternalSecretRewriteRegexp
  4048. </a>
  4049. </em>
  4050. </td>
  4051. <td>
  4052. <em>(Optional)</em>
  4053. <p>Used to rewrite with regular expressions.
  4054. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  4055. </td>
  4056. </tr>
  4057. <tr>
  4058. <td>
  4059. <code>transform</code></br>
  4060. <em>
  4061. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteTransform">
  4062. ExternalSecretRewriteTransform
  4063. </a>
  4064. </em>
  4065. </td>
  4066. <td>
  4067. <em>(Optional)</em>
  4068. <p>Used to apply string transformation on the secrets.
  4069. The resulting key will be the output of the template applied by the operation.</p>
  4070. </td>
  4071. </tr>
  4072. </tbody>
  4073. </table>
  4074. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  4075. </h3>
  4076. <p>
  4077. (<em>Appears on:</em>
  4078. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  4079. </p>
  4080. <p>
  4081. </p>
  4082. <table>
  4083. <thead>
  4084. <tr>
  4085. <th>Field</th>
  4086. <th>Description</th>
  4087. </tr>
  4088. </thead>
  4089. <tbody>
  4090. <tr>
  4091. <td>
  4092. <code>source</code></br>
  4093. <em>
  4094. string
  4095. </em>
  4096. </td>
  4097. <td>
  4098. <p>Used to define the regular expression of a re.Compiler.</p>
  4099. </td>
  4100. </tr>
  4101. <tr>
  4102. <td>
  4103. <code>target</code></br>
  4104. <em>
  4105. string
  4106. </em>
  4107. </td>
  4108. <td>
  4109. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  4110. </td>
  4111. </tr>
  4112. </tbody>
  4113. </table>
  4114. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  4115. </h3>
  4116. <p>
  4117. (<em>Appears on:</em>
  4118. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  4119. </p>
  4120. <p>
  4121. </p>
  4122. <table>
  4123. <thead>
  4124. <tr>
  4125. <th>Field</th>
  4126. <th>Description</th>
  4127. </tr>
  4128. </thead>
  4129. <tbody>
  4130. <tr>
  4131. <td>
  4132. <code>template</code></br>
  4133. <em>
  4134. string
  4135. </em>
  4136. </td>
  4137. <td>
  4138. <p>Used to define the template to apply on the secret name.
  4139. <code>.value</code> will specify the secret name in the template.</p>
  4140. </td>
  4141. </tr>
  4142. </tbody>
  4143. </table>
  4144. <h3 id="external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec
  4145. </h3>
  4146. <p>
  4147. (<em>Appears on:</em>
  4148. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  4149. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  4150. </p>
  4151. <p>
  4152. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  4153. </p>
  4154. <table>
  4155. <thead>
  4156. <tr>
  4157. <th>Field</th>
  4158. <th>Description</th>
  4159. </tr>
  4160. </thead>
  4161. <tbody>
  4162. <tr>
  4163. <td>
  4164. <code>secretStoreRef</code></br>
  4165. <em>
  4166. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  4167. SecretStoreRef
  4168. </a>
  4169. </em>
  4170. </td>
  4171. <td>
  4172. <em>(Optional)</em>
  4173. </td>
  4174. </tr>
  4175. <tr>
  4176. <td>
  4177. <code>target</code></br>
  4178. <em>
  4179. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  4180. ExternalSecretTarget
  4181. </a>
  4182. </em>
  4183. </td>
  4184. <td>
  4185. <em>(Optional)</em>
  4186. </td>
  4187. </tr>
  4188. <tr>
  4189. <td>
  4190. <code>refreshInterval</code></br>
  4191. <em>
  4192. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4193. Kubernetes meta/v1.Duration
  4194. </a>
  4195. </em>
  4196. </td>
  4197. <td>
  4198. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  4199. 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;
  4200. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4201. </td>
  4202. </tr>
  4203. <tr>
  4204. <td>
  4205. <code>data</code></br>
  4206. <em>
  4207. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  4208. []ExternalSecretData
  4209. </a>
  4210. </em>
  4211. </td>
  4212. <td>
  4213. <em>(Optional)</em>
  4214. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4215. </td>
  4216. </tr>
  4217. <tr>
  4218. <td>
  4219. <code>dataFrom</code></br>
  4220. <em>
  4221. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  4222. []ExternalSecretDataFromRemoteRef
  4223. </a>
  4224. </em>
  4225. </td>
  4226. <td>
  4227. <em>(Optional)</em>
  4228. <p>DataFrom is used to fetch all properties from a specific Provider data
  4229. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4230. </td>
  4231. </tr>
  4232. </tbody>
  4233. </table>
  4234. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus
  4235. </h3>
  4236. <p>
  4237. (<em>Appears on:</em>
  4238. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  4239. </p>
  4240. <p>
  4241. </p>
  4242. <table>
  4243. <thead>
  4244. <tr>
  4245. <th>Field</th>
  4246. <th>Description</th>
  4247. </tr>
  4248. </thead>
  4249. <tbody>
  4250. <tr>
  4251. <td>
  4252. <code>refreshTime</code></br>
  4253. <em>
  4254. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  4255. Kubernetes meta/v1.Time
  4256. </a>
  4257. </em>
  4258. </td>
  4259. <td>
  4260. <p>refreshTime is the time and date the external secret was fetched and
  4261. the target secret updated</p>
  4262. </td>
  4263. </tr>
  4264. <tr>
  4265. <td>
  4266. <code>syncedResourceVersion</code></br>
  4267. <em>
  4268. string
  4269. </em>
  4270. </td>
  4271. <td>
  4272. <p>SyncedResourceVersion keeps track of the last synced version</p>
  4273. </td>
  4274. </tr>
  4275. <tr>
  4276. <td>
  4277. <code>conditions</code></br>
  4278. <em>
  4279. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">
  4280. []ExternalSecretStatusCondition
  4281. </a>
  4282. </em>
  4283. </td>
  4284. <td>
  4285. <em>(Optional)</em>
  4286. </td>
  4287. </tr>
  4288. <tr>
  4289. <td>
  4290. <code>binding</code></br>
  4291. <em>
  4292. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  4293. Kubernetes core/v1.LocalObjectReference
  4294. </a>
  4295. </em>
  4296. </td>
  4297. <td>
  4298. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  4299. </td>
  4300. </tr>
  4301. </tbody>
  4302. </table>
  4303. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  4304. </h3>
  4305. <p>
  4306. (<em>Appears on:</em>
  4307. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus</a>)
  4308. </p>
  4309. <p>
  4310. </p>
  4311. <table>
  4312. <thead>
  4313. <tr>
  4314. <th>Field</th>
  4315. <th>Description</th>
  4316. </tr>
  4317. </thead>
  4318. <tbody>
  4319. <tr>
  4320. <td>
  4321. <code>type</code></br>
  4322. <em>
  4323. <a href="#external-secrets.io/v1beta1.ExternalSecretConditionType">
  4324. ExternalSecretConditionType
  4325. </a>
  4326. </em>
  4327. </td>
  4328. <td>
  4329. </td>
  4330. </tr>
  4331. <tr>
  4332. <td>
  4333. <code>status</code></br>
  4334. <em>
  4335. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  4336. Kubernetes core/v1.ConditionStatus
  4337. </a>
  4338. </em>
  4339. </td>
  4340. <td>
  4341. </td>
  4342. </tr>
  4343. <tr>
  4344. <td>
  4345. <code>reason</code></br>
  4346. <em>
  4347. string
  4348. </em>
  4349. </td>
  4350. <td>
  4351. <em>(Optional)</em>
  4352. </td>
  4353. </tr>
  4354. <tr>
  4355. <td>
  4356. <code>message</code></br>
  4357. <em>
  4358. string
  4359. </em>
  4360. </td>
  4361. <td>
  4362. <em>(Optional)</em>
  4363. </td>
  4364. </tr>
  4365. <tr>
  4366. <td>
  4367. <code>lastTransitionTime</code></br>
  4368. <em>
  4369. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  4370. Kubernetes meta/v1.Time
  4371. </a>
  4372. </em>
  4373. </td>
  4374. <td>
  4375. <em>(Optional)</em>
  4376. </td>
  4377. </tr>
  4378. </tbody>
  4379. </table>
  4380. <h3 id="external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget
  4381. </h3>
  4382. <p>
  4383. (<em>Appears on:</em>
  4384. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4385. </p>
  4386. <p>
  4387. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  4388. There can be only one target per ExternalSecret.</p>
  4389. </p>
  4390. <table>
  4391. <thead>
  4392. <tr>
  4393. <th>Field</th>
  4394. <th>Description</th>
  4395. </tr>
  4396. </thead>
  4397. <tbody>
  4398. <tr>
  4399. <td>
  4400. <code>name</code></br>
  4401. <em>
  4402. string
  4403. </em>
  4404. </td>
  4405. <td>
  4406. <em>(Optional)</em>
  4407. <p>Name defines the name of the Secret resource to be managed
  4408. This field is immutable
  4409. Defaults to the .metadata.name of the ExternalSecret resource</p>
  4410. </td>
  4411. </tr>
  4412. <tr>
  4413. <td>
  4414. <code>creationPolicy</code></br>
  4415. <em>
  4416. <a href="#external-secrets.io/v1beta1.ExternalSecretCreationPolicy">
  4417. ExternalSecretCreationPolicy
  4418. </a>
  4419. </em>
  4420. </td>
  4421. <td>
  4422. <em>(Optional)</em>
  4423. <p>CreationPolicy defines rules on how to create the resulting Secret
  4424. Defaults to &lsquo;Owner&rsquo;</p>
  4425. </td>
  4426. </tr>
  4427. <tr>
  4428. <td>
  4429. <code>deletionPolicy</code></br>
  4430. <em>
  4431. <a href="#external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">
  4432. ExternalSecretDeletionPolicy
  4433. </a>
  4434. </em>
  4435. </td>
  4436. <td>
  4437. <em>(Optional)</em>
  4438. <p>DeletionPolicy defines rules on how to delete the resulting Secret
  4439. Defaults to &lsquo;Retain&rsquo;</p>
  4440. </td>
  4441. </tr>
  4442. <tr>
  4443. <td>
  4444. <code>template</code></br>
  4445. <em>
  4446. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">
  4447. ExternalSecretTemplate
  4448. </a>
  4449. </em>
  4450. </td>
  4451. <td>
  4452. <em>(Optional)</em>
  4453. <p>Template defines a blueprint for the created Secret resource.</p>
  4454. </td>
  4455. </tr>
  4456. <tr>
  4457. <td>
  4458. <code>immutable</code></br>
  4459. <em>
  4460. bool
  4461. </em>
  4462. </td>
  4463. <td>
  4464. <em>(Optional)</em>
  4465. <p>Immutable defines if the final secret will be immutable</p>
  4466. </td>
  4467. </tr>
  4468. </tbody>
  4469. </table>
  4470. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate
  4471. </h3>
  4472. <p>
  4473. (<em>Appears on:</em>
  4474. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4475. </p>
  4476. <p>
  4477. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  4478. 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>
  4479. </p>
  4480. <table>
  4481. <thead>
  4482. <tr>
  4483. <th>Field</th>
  4484. <th>Description</th>
  4485. </tr>
  4486. </thead>
  4487. <tbody>
  4488. <tr>
  4489. <td>
  4490. <code>type</code></br>
  4491. <em>
  4492. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  4493. Kubernetes core/v1.SecretType
  4494. </a>
  4495. </em>
  4496. </td>
  4497. <td>
  4498. <em>(Optional)</em>
  4499. </td>
  4500. </tr>
  4501. <tr>
  4502. <td>
  4503. <code>engineVersion</code></br>
  4504. <em>
  4505. <a href="#external-secrets.io/v1beta1.TemplateEngineVersion">
  4506. TemplateEngineVersion
  4507. </a>
  4508. </em>
  4509. </td>
  4510. <td>
  4511. <p>EngineVersion specifies the template engine version
  4512. that should be used to compile/execute the
  4513. template specified in .data and .templateFrom[].</p>
  4514. </td>
  4515. </tr>
  4516. <tr>
  4517. <td>
  4518. <code>metadata</code></br>
  4519. <em>
  4520. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">
  4521. ExternalSecretTemplateMetadata
  4522. </a>
  4523. </em>
  4524. </td>
  4525. <td>
  4526. <em>(Optional)</em>
  4527. </td>
  4528. </tr>
  4529. <tr>
  4530. <td>
  4531. <code>mergePolicy</code></br>
  4532. <em>
  4533. <a href="#external-secrets.io/v1beta1.TemplateMergePolicy">
  4534. TemplateMergePolicy
  4535. </a>
  4536. </em>
  4537. </td>
  4538. <td>
  4539. </td>
  4540. </tr>
  4541. <tr>
  4542. <td>
  4543. <code>data</code></br>
  4544. <em>
  4545. map[string]string
  4546. </em>
  4547. </td>
  4548. <td>
  4549. <em>(Optional)</em>
  4550. </td>
  4551. </tr>
  4552. <tr>
  4553. <td>
  4554. <code>templateFrom</code></br>
  4555. <em>
  4556. <a href="#external-secrets.io/v1beta1.TemplateFrom">
  4557. []TemplateFrom
  4558. </a>
  4559. </em>
  4560. </td>
  4561. <td>
  4562. <em>(Optional)</em>
  4563. </td>
  4564. </tr>
  4565. </tbody>
  4566. </table>
  4567. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  4568. </h3>
  4569. <p>
  4570. (<em>Appears on:</em>
  4571. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  4572. </p>
  4573. <p>
  4574. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  4575. </p>
  4576. <table>
  4577. <thead>
  4578. <tr>
  4579. <th>Field</th>
  4580. <th>Description</th>
  4581. </tr>
  4582. </thead>
  4583. <tbody>
  4584. <tr>
  4585. <td>
  4586. <code>annotations</code></br>
  4587. <em>
  4588. map[string]string
  4589. </em>
  4590. </td>
  4591. <td>
  4592. <em>(Optional)</em>
  4593. </td>
  4594. </tr>
  4595. <tr>
  4596. <td>
  4597. <code>labels</code></br>
  4598. <em>
  4599. map[string]string
  4600. </em>
  4601. </td>
  4602. <td>
  4603. <em>(Optional)</em>
  4604. </td>
  4605. </tr>
  4606. </tbody>
  4607. </table>
  4608. <h3 id="external-secrets.io/v1beta1.ExternalSecretValidator">ExternalSecretValidator
  4609. </h3>
  4610. <p>
  4611. </p>
  4612. <h3 id="external-secrets.io/v1beta1.FakeProvider">FakeProvider
  4613. </h3>
  4614. <p>
  4615. (<em>Appears on:</em>
  4616. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4617. </p>
  4618. <p>
  4619. <p>FakeProvider configures a fake provider that returns static values.</p>
  4620. </p>
  4621. <table>
  4622. <thead>
  4623. <tr>
  4624. <th>Field</th>
  4625. <th>Description</th>
  4626. </tr>
  4627. </thead>
  4628. <tbody>
  4629. <tr>
  4630. <td>
  4631. <code>data</code></br>
  4632. <em>
  4633. <a href="#external-secrets.io/v1beta1.FakeProviderData">
  4634. []FakeProviderData
  4635. </a>
  4636. </em>
  4637. </td>
  4638. <td>
  4639. </td>
  4640. </tr>
  4641. </tbody>
  4642. </table>
  4643. <h3 id="external-secrets.io/v1beta1.FakeProviderData">FakeProviderData
  4644. </h3>
  4645. <p>
  4646. (<em>Appears on:</em>
  4647. <a href="#external-secrets.io/v1beta1.FakeProvider">FakeProvider</a>)
  4648. </p>
  4649. <p>
  4650. </p>
  4651. <table>
  4652. <thead>
  4653. <tr>
  4654. <th>Field</th>
  4655. <th>Description</th>
  4656. </tr>
  4657. </thead>
  4658. <tbody>
  4659. <tr>
  4660. <td>
  4661. <code>key</code></br>
  4662. <em>
  4663. string
  4664. </em>
  4665. </td>
  4666. <td>
  4667. </td>
  4668. </tr>
  4669. <tr>
  4670. <td>
  4671. <code>value</code></br>
  4672. <em>
  4673. string
  4674. </em>
  4675. </td>
  4676. <td>
  4677. </td>
  4678. </tr>
  4679. <tr>
  4680. <td>
  4681. <code>valueMap</code></br>
  4682. <em>
  4683. map[string]string
  4684. </em>
  4685. </td>
  4686. <td>
  4687. <p>Deprecated: ValueMap is deprecated and is intended to be removed in the future, use the <code>value</code> field instead.</p>
  4688. </td>
  4689. </tr>
  4690. <tr>
  4691. <td>
  4692. <code>version</code></br>
  4693. <em>
  4694. string
  4695. </em>
  4696. </td>
  4697. <td>
  4698. </td>
  4699. </tr>
  4700. </tbody>
  4701. </table>
  4702. <h3 id="external-secrets.io/v1beta1.FindName">FindName
  4703. </h3>
  4704. <p>
  4705. (<em>Appears on:</em>
  4706. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  4707. </p>
  4708. <p>
  4709. </p>
  4710. <table>
  4711. <thead>
  4712. <tr>
  4713. <th>Field</th>
  4714. <th>Description</th>
  4715. </tr>
  4716. </thead>
  4717. <tbody>
  4718. <tr>
  4719. <td>
  4720. <code>regexp</code></br>
  4721. <em>
  4722. string
  4723. </em>
  4724. </td>
  4725. <td>
  4726. <em>(Optional)</em>
  4727. <p>Finds secrets base</p>
  4728. </td>
  4729. </tr>
  4730. </tbody>
  4731. </table>
  4732. <h3 id="external-secrets.io/v1beta1.FortanixProvider">FortanixProvider
  4733. </h3>
  4734. <p>
  4735. (<em>Appears on:</em>
  4736. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4737. </p>
  4738. <p>
  4739. </p>
  4740. <table>
  4741. <thead>
  4742. <tr>
  4743. <th>Field</th>
  4744. <th>Description</th>
  4745. </tr>
  4746. </thead>
  4747. <tbody>
  4748. <tr>
  4749. <td>
  4750. <code>apiUrl</code></br>
  4751. <em>
  4752. string
  4753. </em>
  4754. </td>
  4755. <td>
  4756. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  4757. </td>
  4758. </tr>
  4759. <tr>
  4760. <td>
  4761. <code>apiKey</code></br>
  4762. <em>
  4763. <a href="#external-secrets.io/v1beta1.FortanixProviderSecretRef">
  4764. FortanixProviderSecretRef
  4765. </a>
  4766. </em>
  4767. </td>
  4768. <td>
  4769. <p>APIKey is the API token to access SDKMS Applications.</p>
  4770. </td>
  4771. </tr>
  4772. </tbody>
  4773. </table>
  4774. <h3 id="external-secrets.io/v1beta1.FortanixProviderSecretRef">FortanixProviderSecretRef
  4775. </h3>
  4776. <p>
  4777. (<em>Appears on:</em>
  4778. <a href="#external-secrets.io/v1beta1.FortanixProvider">FortanixProvider</a>)
  4779. </p>
  4780. <p>
  4781. </p>
  4782. <table>
  4783. <thead>
  4784. <tr>
  4785. <th>Field</th>
  4786. <th>Description</th>
  4787. </tr>
  4788. </thead>
  4789. <tbody>
  4790. <tr>
  4791. <td>
  4792. <code>secretRef</code></br>
  4793. <em>
  4794. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4795. External Secrets meta/v1.SecretKeySelector
  4796. </a>
  4797. </em>
  4798. </td>
  4799. <td>
  4800. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  4801. </td>
  4802. </tr>
  4803. </tbody>
  4804. </table>
  4805. <h3 id="external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth
  4806. </h3>
  4807. <p>
  4808. (<em>Appears on:</em>
  4809. <a href="#external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider</a>)
  4810. </p>
  4811. <p>
  4812. </p>
  4813. <table>
  4814. <thead>
  4815. <tr>
  4816. <th>Field</th>
  4817. <th>Description</th>
  4818. </tr>
  4819. </thead>
  4820. <tbody>
  4821. <tr>
  4822. <td>
  4823. <code>secretRef</code></br>
  4824. <em>
  4825. <a href="#external-secrets.io/v1beta1.GCPSMAuthSecretRef">
  4826. GCPSMAuthSecretRef
  4827. </a>
  4828. </em>
  4829. </td>
  4830. <td>
  4831. <em>(Optional)</em>
  4832. </td>
  4833. </tr>
  4834. <tr>
  4835. <td>
  4836. <code>workloadIdentity</code></br>
  4837. <em>
  4838. <a href="#external-secrets.io/v1beta1.GCPWorkloadIdentity">
  4839. GCPWorkloadIdentity
  4840. </a>
  4841. </em>
  4842. </td>
  4843. <td>
  4844. <em>(Optional)</em>
  4845. </td>
  4846. </tr>
  4847. </tbody>
  4848. </table>
  4849. <h3 id="external-secrets.io/v1beta1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  4850. </h3>
  4851. <p>
  4852. (<em>Appears on:</em>
  4853. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  4854. </p>
  4855. <p>
  4856. </p>
  4857. <table>
  4858. <thead>
  4859. <tr>
  4860. <th>Field</th>
  4861. <th>Description</th>
  4862. </tr>
  4863. </thead>
  4864. <tbody>
  4865. <tr>
  4866. <td>
  4867. <code>secretAccessKeySecretRef</code></br>
  4868. <em>
  4869. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4870. External Secrets meta/v1.SecretKeySelector
  4871. </a>
  4872. </em>
  4873. </td>
  4874. <td>
  4875. <em>(Optional)</em>
  4876. <p>The SecretAccessKey is used for authentication</p>
  4877. </td>
  4878. </tr>
  4879. </tbody>
  4880. </table>
  4881. <h3 id="external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider
  4882. </h3>
  4883. <p>
  4884. (<em>Appears on:</em>
  4885. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4886. </p>
  4887. <p>
  4888. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  4889. </p>
  4890. <table>
  4891. <thead>
  4892. <tr>
  4893. <th>Field</th>
  4894. <th>Description</th>
  4895. </tr>
  4896. </thead>
  4897. <tbody>
  4898. <tr>
  4899. <td>
  4900. <code>auth</code></br>
  4901. <em>
  4902. <a href="#external-secrets.io/v1beta1.GCPSMAuth">
  4903. GCPSMAuth
  4904. </a>
  4905. </em>
  4906. </td>
  4907. <td>
  4908. <em>(Optional)</em>
  4909. <p>Auth defines the information necessary to authenticate against GCP</p>
  4910. </td>
  4911. </tr>
  4912. <tr>
  4913. <td>
  4914. <code>projectID</code></br>
  4915. <em>
  4916. string
  4917. </em>
  4918. </td>
  4919. <td>
  4920. <p>ProjectID project where secret is located</p>
  4921. </td>
  4922. </tr>
  4923. </tbody>
  4924. </table>
  4925. <h3 id="external-secrets.io/v1beta1.GCPWorkloadIdentity">GCPWorkloadIdentity
  4926. </h3>
  4927. <p>
  4928. (<em>Appears on:</em>
  4929. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  4930. </p>
  4931. <p>
  4932. </p>
  4933. <table>
  4934. <thead>
  4935. <tr>
  4936. <th>Field</th>
  4937. <th>Description</th>
  4938. </tr>
  4939. </thead>
  4940. <tbody>
  4941. <tr>
  4942. <td>
  4943. <code>serviceAccountRef</code></br>
  4944. <em>
  4945. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  4946. External Secrets meta/v1.ServiceAccountSelector
  4947. </a>
  4948. </em>
  4949. </td>
  4950. <td>
  4951. </td>
  4952. </tr>
  4953. <tr>
  4954. <td>
  4955. <code>clusterLocation</code></br>
  4956. <em>
  4957. string
  4958. </em>
  4959. </td>
  4960. <td>
  4961. </td>
  4962. </tr>
  4963. <tr>
  4964. <td>
  4965. <code>clusterName</code></br>
  4966. <em>
  4967. string
  4968. </em>
  4969. </td>
  4970. <td>
  4971. </td>
  4972. </tr>
  4973. <tr>
  4974. <td>
  4975. <code>clusterProjectID</code></br>
  4976. <em>
  4977. string
  4978. </em>
  4979. </td>
  4980. <td>
  4981. </td>
  4982. </tr>
  4983. </tbody>
  4984. </table>
  4985. <h3 id="external-secrets.io/v1beta1.GeneratorRef">GeneratorRef
  4986. </h3>
  4987. <p>
  4988. (<em>Appears on:</em>
  4989. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  4990. <a href="#external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef</a>)
  4991. </p>
  4992. <p>
  4993. <p>GeneratorRef points to a generator custom resource.</p>
  4994. </p>
  4995. <table>
  4996. <thead>
  4997. <tr>
  4998. <th>Field</th>
  4999. <th>Description</th>
  5000. </tr>
  5001. </thead>
  5002. <tbody>
  5003. <tr>
  5004. <td>
  5005. <code>apiVersion</code></br>
  5006. <em>
  5007. string
  5008. </em>
  5009. </td>
  5010. <td>
  5011. <p>Specify the apiVersion of the generator resource</p>
  5012. </td>
  5013. </tr>
  5014. <tr>
  5015. <td>
  5016. <code>kind</code></br>
  5017. <em>
  5018. string
  5019. </em>
  5020. </td>
  5021. <td>
  5022. <p>Specify the Kind of the resource, e.g. Password, ACRAccessToken etc.</p>
  5023. </td>
  5024. </tr>
  5025. <tr>
  5026. <td>
  5027. <code>name</code></br>
  5028. <em>
  5029. string
  5030. </em>
  5031. </td>
  5032. <td>
  5033. <p>Specify the name of the generator resource</p>
  5034. </td>
  5035. </tr>
  5036. </tbody>
  5037. </table>
  5038. <h3 id="external-secrets.io/v1beta1.GenericStore">GenericStore
  5039. </h3>
  5040. <p>
  5041. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  5042. or a namespaced SecretStore.</p>
  5043. </p>
  5044. <h3 id="external-secrets.io/v1beta1.GenericStoreValidator">GenericStoreValidator
  5045. </h3>
  5046. <p>
  5047. </p>
  5048. <h3 id="external-secrets.io/v1beta1.GitlabAuth">GitlabAuth
  5049. </h3>
  5050. <p>
  5051. (<em>Appears on:</em>
  5052. <a href="#external-secrets.io/v1beta1.GitlabProvider">GitlabProvider</a>)
  5053. </p>
  5054. <p>
  5055. </p>
  5056. <table>
  5057. <thead>
  5058. <tr>
  5059. <th>Field</th>
  5060. <th>Description</th>
  5061. </tr>
  5062. </thead>
  5063. <tbody>
  5064. <tr>
  5065. <td>
  5066. <code>SecretRef</code></br>
  5067. <em>
  5068. <a href="#external-secrets.io/v1beta1.GitlabSecretRef">
  5069. GitlabSecretRef
  5070. </a>
  5071. </em>
  5072. </td>
  5073. <td>
  5074. </td>
  5075. </tr>
  5076. </tbody>
  5077. </table>
  5078. <h3 id="external-secrets.io/v1beta1.GitlabProvider">GitlabProvider
  5079. </h3>
  5080. <p>
  5081. (<em>Appears on:</em>
  5082. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5083. </p>
  5084. <p>
  5085. <p>Configures a store to sync secrets with a GitLab instance.</p>
  5086. </p>
  5087. <table>
  5088. <thead>
  5089. <tr>
  5090. <th>Field</th>
  5091. <th>Description</th>
  5092. </tr>
  5093. </thead>
  5094. <tbody>
  5095. <tr>
  5096. <td>
  5097. <code>url</code></br>
  5098. <em>
  5099. string
  5100. </em>
  5101. </td>
  5102. <td>
  5103. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  5104. </td>
  5105. </tr>
  5106. <tr>
  5107. <td>
  5108. <code>auth</code></br>
  5109. <em>
  5110. <a href="#external-secrets.io/v1beta1.GitlabAuth">
  5111. GitlabAuth
  5112. </a>
  5113. </em>
  5114. </td>
  5115. <td>
  5116. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  5117. </td>
  5118. </tr>
  5119. <tr>
  5120. <td>
  5121. <code>projectID</code></br>
  5122. <em>
  5123. string
  5124. </em>
  5125. </td>
  5126. <td>
  5127. <p>ProjectID specifies a project where secrets are located.</p>
  5128. </td>
  5129. </tr>
  5130. <tr>
  5131. <td>
  5132. <code>inheritFromGroups</code></br>
  5133. <em>
  5134. bool
  5135. </em>
  5136. </td>
  5137. <td>
  5138. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  5139. </td>
  5140. </tr>
  5141. <tr>
  5142. <td>
  5143. <code>groupIDs</code></br>
  5144. <em>
  5145. []string
  5146. </em>
  5147. </td>
  5148. <td>
  5149. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  5150. </td>
  5151. </tr>
  5152. <tr>
  5153. <td>
  5154. <code>environment</code></br>
  5155. <em>
  5156. string
  5157. </em>
  5158. </td>
  5159. <td>
  5160. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  5161. </td>
  5162. </tr>
  5163. </tbody>
  5164. </table>
  5165. <h3 id="external-secrets.io/v1beta1.GitlabSecretRef">GitlabSecretRef
  5166. </h3>
  5167. <p>
  5168. (<em>Appears on:</em>
  5169. <a href="#external-secrets.io/v1beta1.GitlabAuth">GitlabAuth</a>)
  5170. </p>
  5171. <p>
  5172. </p>
  5173. <table>
  5174. <thead>
  5175. <tr>
  5176. <th>Field</th>
  5177. <th>Description</th>
  5178. </tr>
  5179. </thead>
  5180. <tbody>
  5181. <tr>
  5182. <td>
  5183. <code>accessToken</code></br>
  5184. <em>
  5185. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5186. External Secrets meta/v1.SecretKeySelector
  5187. </a>
  5188. </em>
  5189. </td>
  5190. <td>
  5191. <p>AccessToken is used for authentication.</p>
  5192. </td>
  5193. </tr>
  5194. </tbody>
  5195. </table>
  5196. <h3 id="external-secrets.io/v1beta1.IBMAuth">IBMAuth
  5197. </h3>
  5198. <p>
  5199. (<em>Appears on:</em>
  5200. <a href="#external-secrets.io/v1beta1.IBMProvider">IBMProvider</a>)
  5201. </p>
  5202. <p>
  5203. </p>
  5204. <table>
  5205. <thead>
  5206. <tr>
  5207. <th>Field</th>
  5208. <th>Description</th>
  5209. </tr>
  5210. </thead>
  5211. <tbody>
  5212. <tr>
  5213. <td>
  5214. <code>secretRef</code></br>
  5215. <em>
  5216. <a href="#external-secrets.io/v1beta1.IBMAuthSecretRef">
  5217. IBMAuthSecretRef
  5218. </a>
  5219. </em>
  5220. </td>
  5221. <td>
  5222. </td>
  5223. </tr>
  5224. <tr>
  5225. <td>
  5226. <code>containerAuth</code></br>
  5227. <em>
  5228. <a href="#external-secrets.io/v1beta1.IBMAuthContainerAuth">
  5229. IBMAuthContainerAuth
  5230. </a>
  5231. </em>
  5232. </td>
  5233. <td>
  5234. </td>
  5235. </tr>
  5236. </tbody>
  5237. </table>
  5238. <h3 id="external-secrets.io/v1beta1.IBMAuthContainerAuth">IBMAuthContainerAuth
  5239. </h3>
  5240. <p>
  5241. (<em>Appears on:</em>
  5242. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  5243. </p>
  5244. <p>
  5245. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  5246. </p>
  5247. <table>
  5248. <thead>
  5249. <tr>
  5250. <th>Field</th>
  5251. <th>Description</th>
  5252. </tr>
  5253. </thead>
  5254. <tbody>
  5255. <tr>
  5256. <td>
  5257. <code>profile</code></br>
  5258. <em>
  5259. string
  5260. </em>
  5261. </td>
  5262. <td>
  5263. <p>the IBM Trusted Profile</p>
  5264. </td>
  5265. </tr>
  5266. <tr>
  5267. <td>
  5268. <code>tokenLocation</code></br>
  5269. <em>
  5270. string
  5271. </em>
  5272. </td>
  5273. <td>
  5274. <p>Location the token is mounted on the pod</p>
  5275. </td>
  5276. </tr>
  5277. <tr>
  5278. <td>
  5279. <code>iamEndpoint</code></br>
  5280. <em>
  5281. string
  5282. </em>
  5283. </td>
  5284. <td>
  5285. </td>
  5286. </tr>
  5287. </tbody>
  5288. </table>
  5289. <h3 id="external-secrets.io/v1beta1.IBMAuthSecretRef">IBMAuthSecretRef
  5290. </h3>
  5291. <p>
  5292. (<em>Appears on:</em>
  5293. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  5294. </p>
  5295. <p>
  5296. </p>
  5297. <table>
  5298. <thead>
  5299. <tr>
  5300. <th>Field</th>
  5301. <th>Description</th>
  5302. </tr>
  5303. </thead>
  5304. <tbody>
  5305. <tr>
  5306. <td>
  5307. <code>secretApiKeySecretRef</code></br>
  5308. <em>
  5309. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5310. External Secrets meta/v1.SecretKeySelector
  5311. </a>
  5312. </em>
  5313. </td>
  5314. <td>
  5315. <p>The SecretAccessKey is used for authentication</p>
  5316. </td>
  5317. </tr>
  5318. </tbody>
  5319. </table>
  5320. <h3 id="external-secrets.io/v1beta1.IBMProvider">IBMProvider
  5321. </h3>
  5322. <p>
  5323. (<em>Appears on:</em>
  5324. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5325. </p>
  5326. <p>
  5327. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  5328. backend.</p>
  5329. </p>
  5330. <table>
  5331. <thead>
  5332. <tr>
  5333. <th>Field</th>
  5334. <th>Description</th>
  5335. </tr>
  5336. </thead>
  5337. <tbody>
  5338. <tr>
  5339. <td>
  5340. <code>auth</code></br>
  5341. <em>
  5342. <a href="#external-secrets.io/v1beta1.IBMAuth">
  5343. IBMAuth
  5344. </a>
  5345. </em>
  5346. </td>
  5347. <td>
  5348. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  5349. </td>
  5350. </tr>
  5351. <tr>
  5352. <td>
  5353. <code>serviceUrl</code></br>
  5354. <em>
  5355. string
  5356. </em>
  5357. </td>
  5358. <td>
  5359. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  5360. </td>
  5361. </tr>
  5362. </tbody>
  5363. </table>
  5364. <h3 id="external-secrets.io/v1beta1.KeeperSecurityProvider">KeeperSecurityProvider
  5365. </h3>
  5366. <p>
  5367. (<em>Appears on:</em>
  5368. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5369. </p>
  5370. <p>
  5371. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  5372. </p>
  5373. <table>
  5374. <thead>
  5375. <tr>
  5376. <th>Field</th>
  5377. <th>Description</th>
  5378. </tr>
  5379. </thead>
  5380. <tbody>
  5381. <tr>
  5382. <td>
  5383. <code>authRef</code></br>
  5384. <em>
  5385. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5386. External Secrets meta/v1.SecretKeySelector
  5387. </a>
  5388. </em>
  5389. </td>
  5390. <td>
  5391. </td>
  5392. </tr>
  5393. <tr>
  5394. <td>
  5395. <code>folderID</code></br>
  5396. <em>
  5397. string
  5398. </em>
  5399. </td>
  5400. <td>
  5401. </td>
  5402. </tr>
  5403. </tbody>
  5404. </table>
  5405. <h3 id="external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth
  5406. </h3>
  5407. <p>
  5408. (<em>Appears on:</em>
  5409. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  5410. </p>
  5411. <p>
  5412. </p>
  5413. <table>
  5414. <thead>
  5415. <tr>
  5416. <th>Field</th>
  5417. <th>Description</th>
  5418. </tr>
  5419. </thead>
  5420. <tbody>
  5421. <tr>
  5422. <td>
  5423. <code>cert</code></br>
  5424. <em>
  5425. <a href="#external-secrets.io/v1beta1.CertAuth">
  5426. CertAuth
  5427. </a>
  5428. </em>
  5429. </td>
  5430. <td>
  5431. <em>(Optional)</em>
  5432. <p>has both clientCert and clientKey as secretKeySelector</p>
  5433. </td>
  5434. </tr>
  5435. <tr>
  5436. <td>
  5437. <code>token</code></br>
  5438. <em>
  5439. <a href="#external-secrets.io/v1beta1.TokenAuth">
  5440. TokenAuth
  5441. </a>
  5442. </em>
  5443. </td>
  5444. <td>
  5445. <em>(Optional)</em>
  5446. <p>use static token to authenticate with</p>
  5447. </td>
  5448. </tr>
  5449. <tr>
  5450. <td>
  5451. <code>serviceAccount</code></br>
  5452. <em>
  5453. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  5454. External Secrets meta/v1.ServiceAccountSelector
  5455. </a>
  5456. </em>
  5457. </td>
  5458. <td>
  5459. <em>(Optional)</em>
  5460. <p>points to a service account that should be used for authentication</p>
  5461. </td>
  5462. </tr>
  5463. </tbody>
  5464. </table>
  5465. <h3 id="external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider
  5466. </h3>
  5467. <p>
  5468. (<em>Appears on:</em>
  5469. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5470. </p>
  5471. <p>
  5472. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  5473. </p>
  5474. <table>
  5475. <thead>
  5476. <tr>
  5477. <th>Field</th>
  5478. <th>Description</th>
  5479. </tr>
  5480. </thead>
  5481. <tbody>
  5482. <tr>
  5483. <td>
  5484. <code>server</code></br>
  5485. <em>
  5486. <a href="#external-secrets.io/v1beta1.KubernetesServer">
  5487. KubernetesServer
  5488. </a>
  5489. </em>
  5490. </td>
  5491. <td>
  5492. <p>configures the Kubernetes server Address.</p>
  5493. </td>
  5494. </tr>
  5495. <tr>
  5496. <td>
  5497. <code>auth</code></br>
  5498. <em>
  5499. <a href="#external-secrets.io/v1beta1.KubernetesAuth">
  5500. KubernetesAuth
  5501. </a>
  5502. </em>
  5503. </td>
  5504. <td>
  5505. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  5506. </td>
  5507. </tr>
  5508. <tr>
  5509. <td>
  5510. <code>remoteNamespace</code></br>
  5511. <em>
  5512. string
  5513. </em>
  5514. </td>
  5515. <td>
  5516. <em>(Optional)</em>
  5517. <p>Remote namespace to fetch the secrets from</p>
  5518. </td>
  5519. </tr>
  5520. </tbody>
  5521. </table>
  5522. <h3 id="external-secrets.io/v1beta1.KubernetesServer">KubernetesServer
  5523. </h3>
  5524. <p>
  5525. (<em>Appears on:</em>
  5526. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  5527. </p>
  5528. <p>
  5529. </p>
  5530. <table>
  5531. <thead>
  5532. <tr>
  5533. <th>Field</th>
  5534. <th>Description</th>
  5535. </tr>
  5536. </thead>
  5537. <tbody>
  5538. <tr>
  5539. <td>
  5540. <code>url</code></br>
  5541. <em>
  5542. string
  5543. </em>
  5544. </td>
  5545. <td>
  5546. <em>(Optional)</em>
  5547. <p>configures the Kubernetes server Address.</p>
  5548. </td>
  5549. </tr>
  5550. <tr>
  5551. <td>
  5552. <code>caBundle</code></br>
  5553. <em>
  5554. []byte
  5555. </em>
  5556. </td>
  5557. <td>
  5558. <em>(Optional)</em>
  5559. <p>CABundle is a base64-encoded CA certificate</p>
  5560. </td>
  5561. </tr>
  5562. <tr>
  5563. <td>
  5564. <code>caProvider</code></br>
  5565. <em>
  5566. <a href="#external-secrets.io/v1beta1.CAProvider">
  5567. CAProvider
  5568. </a>
  5569. </em>
  5570. </td>
  5571. <td>
  5572. <em>(Optional)</em>
  5573. <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>
  5574. </td>
  5575. </tr>
  5576. </tbody>
  5577. </table>
  5578. <h3 id="external-secrets.io/v1beta1.NoSecretError">NoSecretError
  5579. </h3>
  5580. <p>
  5581. <p>NoSecretError shall be returned when a GetSecret can not find the
  5582. desired secret. This is used for deletionPolicy.</p>
  5583. </p>
  5584. <h3 id="external-secrets.io/v1beta1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  5585. </h3>
  5586. <p>
  5587. (<em>Appears on:</em>
  5588. <a href="#external-secrets.io/v1beta1.OnboardbaseProvider">OnboardbaseProvider</a>)
  5589. </p>
  5590. <p>
  5591. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  5592. </p>
  5593. <table>
  5594. <thead>
  5595. <tr>
  5596. <th>Field</th>
  5597. <th>Description</th>
  5598. </tr>
  5599. </thead>
  5600. <tbody>
  5601. <tr>
  5602. <td>
  5603. <code>apiKeyRef</code></br>
  5604. <em>
  5605. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5606. External Secrets meta/v1.SecretKeySelector
  5607. </a>
  5608. </em>
  5609. </td>
  5610. <td>
  5611. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  5612. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  5613. </td>
  5614. </tr>
  5615. <tr>
  5616. <td>
  5617. <code>passcodeRef</code></br>
  5618. <em>
  5619. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5620. External Secrets meta/v1.SecretKeySelector
  5621. </a>
  5622. </em>
  5623. </td>
  5624. <td>
  5625. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  5626. </td>
  5627. </tr>
  5628. </tbody>
  5629. </table>
  5630. <h3 id="external-secrets.io/v1beta1.OnboardbaseProvider">OnboardbaseProvider
  5631. </h3>
  5632. <p>
  5633. (<em>Appears on:</em>
  5634. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5635. </p>
  5636. <p>
  5637. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  5638. Project and Config are required if not using a Service Token.</p>
  5639. </p>
  5640. <table>
  5641. <thead>
  5642. <tr>
  5643. <th>Field</th>
  5644. <th>Description</th>
  5645. </tr>
  5646. </thead>
  5647. <tbody>
  5648. <tr>
  5649. <td>
  5650. <code>auth</code></br>
  5651. <em>
  5652. <a href="#external-secrets.io/v1beta1.OnboardbaseAuthSecretRef">
  5653. OnboardbaseAuthSecretRef
  5654. </a>
  5655. </em>
  5656. </td>
  5657. <td>
  5658. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  5659. </td>
  5660. </tr>
  5661. <tr>
  5662. <td>
  5663. <code>apiHost</code></br>
  5664. <em>
  5665. string
  5666. </em>
  5667. </td>
  5668. <td>
  5669. <p>APIHost use this to configure the host url for the API for selfhosted installation, default is <a href="https://public.onboardbase.com/api/v1/">https://public.onboardbase.com/api/v1/</a></p>
  5670. </td>
  5671. </tr>
  5672. <tr>
  5673. <td>
  5674. <code>project</code></br>
  5675. <em>
  5676. string
  5677. </em>
  5678. </td>
  5679. <td>
  5680. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  5681. </td>
  5682. </tr>
  5683. <tr>
  5684. <td>
  5685. <code>environment</code></br>
  5686. <em>
  5687. string
  5688. </em>
  5689. </td>
  5690. <td>
  5691. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  5692. </td>
  5693. </tr>
  5694. </tbody>
  5695. </table>
  5696. <h3 id="external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth
  5697. </h3>
  5698. <p>
  5699. (<em>Appears on:</em>
  5700. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider</a>)
  5701. </p>
  5702. <p>
  5703. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  5704. </p>
  5705. <table>
  5706. <thead>
  5707. <tr>
  5708. <th>Field</th>
  5709. <th>Description</th>
  5710. </tr>
  5711. </thead>
  5712. <tbody>
  5713. <tr>
  5714. <td>
  5715. <code>secretRef</code></br>
  5716. <em>
  5717. <a href="#external-secrets.io/v1beta1.OnePasswordAuthSecretRef">
  5718. OnePasswordAuthSecretRef
  5719. </a>
  5720. </em>
  5721. </td>
  5722. <td>
  5723. </td>
  5724. </tr>
  5725. </tbody>
  5726. </table>
  5727. <h3 id="external-secrets.io/v1beta1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  5728. </h3>
  5729. <p>
  5730. (<em>Appears on:</em>
  5731. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth</a>)
  5732. </p>
  5733. <p>
  5734. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  5735. </p>
  5736. <table>
  5737. <thead>
  5738. <tr>
  5739. <th>Field</th>
  5740. <th>Description</th>
  5741. </tr>
  5742. </thead>
  5743. <tbody>
  5744. <tr>
  5745. <td>
  5746. <code>connectTokenSecretRef</code></br>
  5747. <em>
  5748. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5749. External Secrets meta/v1.SecretKeySelector
  5750. </a>
  5751. </em>
  5752. </td>
  5753. <td>
  5754. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  5755. </td>
  5756. </tr>
  5757. </tbody>
  5758. </table>
  5759. <h3 id="external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider
  5760. </h3>
  5761. <p>
  5762. (<em>Appears on:</em>
  5763. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5764. </p>
  5765. <p>
  5766. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  5767. </p>
  5768. <table>
  5769. <thead>
  5770. <tr>
  5771. <th>Field</th>
  5772. <th>Description</th>
  5773. </tr>
  5774. </thead>
  5775. <tbody>
  5776. <tr>
  5777. <td>
  5778. <code>auth</code></br>
  5779. <em>
  5780. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">
  5781. OnePasswordAuth
  5782. </a>
  5783. </em>
  5784. </td>
  5785. <td>
  5786. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  5787. </td>
  5788. </tr>
  5789. <tr>
  5790. <td>
  5791. <code>connectHost</code></br>
  5792. <em>
  5793. string
  5794. </em>
  5795. </td>
  5796. <td>
  5797. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  5798. </td>
  5799. </tr>
  5800. <tr>
  5801. <td>
  5802. <code>vaults</code></br>
  5803. <em>
  5804. map[string]int
  5805. </em>
  5806. </td>
  5807. <td>
  5808. <p>Vaults defines which OnePassword vaults to search in which order</p>
  5809. </td>
  5810. </tr>
  5811. </tbody>
  5812. </table>
  5813. <h3 id="external-secrets.io/v1beta1.OracleAuth">OracleAuth
  5814. </h3>
  5815. <p>
  5816. (<em>Appears on:</em>
  5817. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  5818. </p>
  5819. <p>
  5820. </p>
  5821. <table>
  5822. <thead>
  5823. <tr>
  5824. <th>Field</th>
  5825. <th>Description</th>
  5826. </tr>
  5827. </thead>
  5828. <tbody>
  5829. <tr>
  5830. <td>
  5831. <code>tenancy</code></br>
  5832. <em>
  5833. string
  5834. </em>
  5835. </td>
  5836. <td>
  5837. <p>Tenancy is the tenancy OCID where user is located.</p>
  5838. </td>
  5839. </tr>
  5840. <tr>
  5841. <td>
  5842. <code>user</code></br>
  5843. <em>
  5844. string
  5845. </em>
  5846. </td>
  5847. <td>
  5848. <p>User is an access OCID specific to the account.</p>
  5849. </td>
  5850. </tr>
  5851. <tr>
  5852. <td>
  5853. <code>secretRef</code></br>
  5854. <em>
  5855. <a href="#external-secrets.io/v1beta1.OracleSecretRef">
  5856. OracleSecretRef
  5857. </a>
  5858. </em>
  5859. </td>
  5860. <td>
  5861. <p>SecretRef to pass through sensitive information.</p>
  5862. </td>
  5863. </tr>
  5864. </tbody>
  5865. </table>
  5866. <h3 id="external-secrets.io/v1beta1.OraclePrincipalType">OraclePrincipalType
  5867. (<code>string</code> alias)</p></h3>
  5868. <p>
  5869. (<em>Appears on:</em>
  5870. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  5871. </p>
  5872. <p>
  5873. </p>
  5874. <table>
  5875. <thead>
  5876. <tr>
  5877. <th>Value</th>
  5878. <th>Description</th>
  5879. </tr>
  5880. </thead>
  5881. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  5882. <td><p>InstancePrincipal represents a instance principal.</p>
  5883. </td>
  5884. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  5885. <td><p>UserPrincipal represents a user principal.</p>
  5886. </td>
  5887. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  5888. <td><p>WorkloadPrincipal represents a workload principal.</p>
  5889. </td>
  5890. </tr></tbody>
  5891. </table>
  5892. <h3 id="external-secrets.io/v1beta1.OracleProvider">OracleProvider
  5893. </h3>
  5894. <p>
  5895. (<em>Appears on:</em>
  5896. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5897. </p>
  5898. <p>
  5899. <p>Configures an store to sync secrets using a Oracle Vault
  5900. backend.</p>
  5901. </p>
  5902. <table>
  5903. <thead>
  5904. <tr>
  5905. <th>Field</th>
  5906. <th>Description</th>
  5907. </tr>
  5908. </thead>
  5909. <tbody>
  5910. <tr>
  5911. <td>
  5912. <code>region</code></br>
  5913. <em>
  5914. string
  5915. </em>
  5916. </td>
  5917. <td>
  5918. <p>Region is the region where vault is located.</p>
  5919. </td>
  5920. </tr>
  5921. <tr>
  5922. <td>
  5923. <code>vault</code></br>
  5924. <em>
  5925. string
  5926. </em>
  5927. </td>
  5928. <td>
  5929. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  5930. </td>
  5931. </tr>
  5932. <tr>
  5933. <td>
  5934. <code>compartment</code></br>
  5935. <em>
  5936. string
  5937. </em>
  5938. </td>
  5939. <td>
  5940. <em>(Optional)</em>
  5941. <p>Compartment is the vault compartment OCID.
  5942. Required for PushSecret</p>
  5943. </td>
  5944. </tr>
  5945. <tr>
  5946. <td>
  5947. <code>encryptionKey</code></br>
  5948. <em>
  5949. string
  5950. </em>
  5951. </td>
  5952. <td>
  5953. <em>(Optional)</em>
  5954. <p>EncryptionKey is the OCID of the encryption key within the vault.
  5955. Required for PushSecret</p>
  5956. </td>
  5957. </tr>
  5958. <tr>
  5959. <td>
  5960. <code>principalType</code></br>
  5961. <em>
  5962. <a href="#external-secrets.io/v1beta1.OraclePrincipalType">
  5963. OraclePrincipalType
  5964. </a>
  5965. </em>
  5966. </td>
  5967. <td>
  5968. <em>(Optional)</em>
  5969. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  5970. determine the principal type. This optional field must be specified if using
  5971. workload identity.</p>
  5972. </td>
  5973. </tr>
  5974. <tr>
  5975. <td>
  5976. <code>auth</code></br>
  5977. <em>
  5978. <a href="#external-secrets.io/v1beta1.OracleAuth">
  5979. OracleAuth
  5980. </a>
  5981. </em>
  5982. </td>
  5983. <td>
  5984. <em>(Optional)</em>
  5985. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  5986. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  5987. </td>
  5988. </tr>
  5989. <tr>
  5990. <td>
  5991. <code>serviceAccountRef</code></br>
  5992. <em>
  5993. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  5994. External Secrets meta/v1.ServiceAccountSelector
  5995. </a>
  5996. </em>
  5997. </td>
  5998. <td>
  5999. <em>(Optional)</em>
  6000. <p>ServiceAccountRef specified the service account
  6001. that should be used when authenticating with WorkloadIdentity.</p>
  6002. </td>
  6003. </tr>
  6004. </tbody>
  6005. </table>
  6006. <h3 id="external-secrets.io/v1beta1.OracleSecretRef">OracleSecretRef
  6007. </h3>
  6008. <p>
  6009. (<em>Appears on:</em>
  6010. <a href="#external-secrets.io/v1beta1.OracleAuth">OracleAuth</a>)
  6011. </p>
  6012. <p>
  6013. </p>
  6014. <table>
  6015. <thead>
  6016. <tr>
  6017. <th>Field</th>
  6018. <th>Description</th>
  6019. </tr>
  6020. </thead>
  6021. <tbody>
  6022. <tr>
  6023. <td>
  6024. <code>privatekey</code></br>
  6025. <em>
  6026. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6027. External Secrets meta/v1.SecretKeySelector
  6028. </a>
  6029. </em>
  6030. </td>
  6031. <td>
  6032. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  6033. </td>
  6034. </tr>
  6035. <tr>
  6036. <td>
  6037. <code>fingerprint</code></br>
  6038. <em>
  6039. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6040. External Secrets meta/v1.SecretKeySelector
  6041. </a>
  6042. </em>
  6043. </td>
  6044. <td>
  6045. <p>Fingerprint is the fingerprint of the API private key.</p>
  6046. </td>
  6047. </tr>
  6048. </tbody>
  6049. </table>
  6050. <h3 id="external-secrets.io/v1beta1.PassboltAuth">PassboltAuth
  6051. </h3>
  6052. <p>
  6053. (<em>Appears on:</em>
  6054. <a href="#external-secrets.io/v1beta1.PassboltProvider">PassboltProvider</a>)
  6055. </p>
  6056. <p>
  6057. <p>Passbolt contains a secretRef for the passbolt credentials.</p>
  6058. </p>
  6059. <table>
  6060. <thead>
  6061. <tr>
  6062. <th>Field</th>
  6063. <th>Description</th>
  6064. </tr>
  6065. </thead>
  6066. <tbody>
  6067. <tr>
  6068. <td>
  6069. <code>passwordSecretRef</code></br>
  6070. <em>
  6071. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6072. External Secrets meta/v1.SecretKeySelector
  6073. </a>
  6074. </em>
  6075. </td>
  6076. <td>
  6077. </td>
  6078. </tr>
  6079. <tr>
  6080. <td>
  6081. <code>privateKeySecretRef</code></br>
  6082. <em>
  6083. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6084. External Secrets meta/v1.SecretKeySelector
  6085. </a>
  6086. </em>
  6087. </td>
  6088. <td>
  6089. </td>
  6090. </tr>
  6091. </tbody>
  6092. </table>
  6093. <h3 id="external-secrets.io/v1beta1.PassboltProvider">PassboltProvider
  6094. </h3>
  6095. <p>
  6096. (<em>Appears on:</em>
  6097. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6098. </p>
  6099. <p>
  6100. </p>
  6101. <table>
  6102. <thead>
  6103. <tr>
  6104. <th>Field</th>
  6105. <th>Description</th>
  6106. </tr>
  6107. </thead>
  6108. <tbody>
  6109. <tr>
  6110. <td>
  6111. <code>auth</code></br>
  6112. <em>
  6113. <a href="#external-secrets.io/v1beta1.PassboltAuth">
  6114. PassboltAuth
  6115. </a>
  6116. </em>
  6117. </td>
  6118. <td>
  6119. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  6120. </td>
  6121. </tr>
  6122. <tr>
  6123. <td>
  6124. <code>host</code></br>
  6125. <em>
  6126. string
  6127. </em>
  6128. </td>
  6129. <td>
  6130. <p>Host defines the Passbolt Server to connect to</p>
  6131. </td>
  6132. </tr>
  6133. </tbody>
  6134. </table>
  6135. <h3 id="external-secrets.io/v1beta1.PasswordDepotAuth">PasswordDepotAuth
  6136. </h3>
  6137. <p>
  6138. (<em>Appears on:</em>
  6139. <a href="#external-secrets.io/v1beta1.PasswordDepotProvider">PasswordDepotProvider</a>)
  6140. </p>
  6141. <p>
  6142. </p>
  6143. <table>
  6144. <thead>
  6145. <tr>
  6146. <th>Field</th>
  6147. <th>Description</th>
  6148. </tr>
  6149. </thead>
  6150. <tbody>
  6151. <tr>
  6152. <td>
  6153. <code>secretRef</code></br>
  6154. <em>
  6155. <a href="#external-secrets.io/v1beta1.PasswordDepotSecretRef">
  6156. PasswordDepotSecretRef
  6157. </a>
  6158. </em>
  6159. </td>
  6160. <td>
  6161. </td>
  6162. </tr>
  6163. </tbody>
  6164. </table>
  6165. <h3 id="external-secrets.io/v1beta1.PasswordDepotProvider">PasswordDepotProvider
  6166. </h3>
  6167. <p>
  6168. (<em>Appears on:</em>
  6169. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6170. </p>
  6171. <p>
  6172. <p>Configures a store to sync secrets with a Password Depot instance.</p>
  6173. </p>
  6174. <table>
  6175. <thead>
  6176. <tr>
  6177. <th>Field</th>
  6178. <th>Description</th>
  6179. </tr>
  6180. </thead>
  6181. <tbody>
  6182. <tr>
  6183. <td>
  6184. <code>host</code></br>
  6185. <em>
  6186. string
  6187. </em>
  6188. </td>
  6189. <td>
  6190. <p>URL configures the Password Depot instance URL.</p>
  6191. </td>
  6192. </tr>
  6193. <tr>
  6194. <td>
  6195. <code>database</code></br>
  6196. <em>
  6197. string
  6198. </em>
  6199. </td>
  6200. <td>
  6201. <p>Database to use as source</p>
  6202. </td>
  6203. </tr>
  6204. <tr>
  6205. <td>
  6206. <code>auth</code></br>
  6207. <em>
  6208. <a href="#external-secrets.io/v1beta1.PasswordDepotAuth">
  6209. PasswordDepotAuth
  6210. </a>
  6211. </em>
  6212. </td>
  6213. <td>
  6214. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  6215. </td>
  6216. </tr>
  6217. </tbody>
  6218. </table>
  6219. <h3 id="external-secrets.io/v1beta1.PasswordDepotSecretRef">PasswordDepotSecretRef
  6220. </h3>
  6221. <p>
  6222. (<em>Appears on:</em>
  6223. <a href="#external-secrets.io/v1beta1.PasswordDepotAuth">PasswordDepotAuth</a>)
  6224. </p>
  6225. <p>
  6226. </p>
  6227. <table>
  6228. <thead>
  6229. <tr>
  6230. <th>Field</th>
  6231. <th>Description</th>
  6232. </tr>
  6233. </thead>
  6234. <tbody>
  6235. <tr>
  6236. <td>
  6237. <code>credentials</code></br>
  6238. <em>
  6239. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6240. External Secrets meta/v1.SecretKeySelector
  6241. </a>
  6242. </em>
  6243. </td>
  6244. <td>
  6245. <em>(Optional)</em>
  6246. <p>Username / Password is used for authentication.</p>
  6247. </td>
  6248. </tr>
  6249. </tbody>
  6250. </table>
  6251. <h3 id="external-secrets.io/v1beta1.Provider">Provider
  6252. </h3>
  6253. <p>
  6254. <p>Provider is a common interface for interacting with secret backends.</p>
  6255. </p>
  6256. <h3 id="external-secrets.io/v1beta1.PulumiProvider">PulumiProvider
  6257. </h3>
  6258. <p>
  6259. (<em>Appears on:</em>
  6260. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6261. </p>
  6262. <p>
  6263. </p>
  6264. <table>
  6265. <thead>
  6266. <tr>
  6267. <th>Field</th>
  6268. <th>Description</th>
  6269. </tr>
  6270. </thead>
  6271. <tbody>
  6272. <tr>
  6273. <td>
  6274. <code>apiUrl</code></br>
  6275. <em>
  6276. string
  6277. </em>
  6278. </td>
  6279. <td>
  6280. <p>APIURL is the URL of the Pulumi API.</p>
  6281. </td>
  6282. </tr>
  6283. <tr>
  6284. <td>
  6285. <code>accessToken</code></br>
  6286. <em>
  6287. <a href="#external-secrets.io/v1beta1.PulumiProviderSecretRef">
  6288. PulumiProviderSecretRef
  6289. </a>
  6290. </em>
  6291. </td>
  6292. <td>
  6293. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  6294. </td>
  6295. </tr>
  6296. <tr>
  6297. <td>
  6298. <code>organization</code></br>
  6299. <em>
  6300. string
  6301. </em>
  6302. </td>
  6303. <td>
  6304. <p>Organization are a space to collaborate on shared projects and stacks.
  6305. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  6306. </td>
  6307. </tr>
  6308. <tr>
  6309. <td>
  6310. <code>environment</code></br>
  6311. <em>
  6312. string
  6313. </em>
  6314. </td>
  6315. <td>
  6316. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  6317. dynamically retrieved values from supported providers including all major clouds,
  6318. and other Pulumi ESC environments.
  6319. To create a new environment, visit <a href="https://www.pulumi.com/docs/esc/environments/">https://www.pulumi.com/docs/esc/environments/</a> for more information.</p>
  6320. </td>
  6321. </tr>
  6322. </tbody>
  6323. </table>
  6324. <h3 id="external-secrets.io/v1beta1.PulumiProviderSecretRef">PulumiProviderSecretRef
  6325. </h3>
  6326. <p>
  6327. (<em>Appears on:</em>
  6328. <a href="#external-secrets.io/v1beta1.PulumiProvider">PulumiProvider</a>)
  6329. </p>
  6330. <p>
  6331. </p>
  6332. <table>
  6333. <thead>
  6334. <tr>
  6335. <th>Field</th>
  6336. <th>Description</th>
  6337. </tr>
  6338. </thead>
  6339. <tbody>
  6340. <tr>
  6341. <td>
  6342. <code>secretRef</code></br>
  6343. <em>
  6344. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6345. External Secrets meta/v1.SecretKeySelector
  6346. </a>
  6347. </em>
  6348. </td>
  6349. <td>
  6350. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  6351. </td>
  6352. </tr>
  6353. </tbody>
  6354. </table>
  6355. <h3 id="external-secrets.io/v1beta1.PushSecretData">PushSecretData
  6356. </h3>
  6357. <p>
  6358. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1beta1.</p>
  6359. </p>
  6360. <h3 id="external-secrets.io/v1beta1.PushSecretRemoteRef">PushSecretRemoteRef
  6361. </h3>
  6362. <p>
  6363. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1beta1.</p>
  6364. </p>
  6365. <h3 id="external-secrets.io/v1beta1.ScalewayProvider">ScalewayProvider
  6366. </h3>
  6367. <p>
  6368. (<em>Appears on:</em>
  6369. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6370. </p>
  6371. <p>
  6372. </p>
  6373. <table>
  6374. <thead>
  6375. <tr>
  6376. <th>Field</th>
  6377. <th>Description</th>
  6378. </tr>
  6379. </thead>
  6380. <tbody>
  6381. <tr>
  6382. <td>
  6383. <code>apiUrl</code></br>
  6384. <em>
  6385. string
  6386. </em>
  6387. </td>
  6388. <td>
  6389. <em>(Optional)</em>
  6390. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  6391. </td>
  6392. </tr>
  6393. <tr>
  6394. <td>
  6395. <code>region</code></br>
  6396. <em>
  6397. string
  6398. </em>
  6399. </td>
  6400. <td>
  6401. <p>Region where your secrets are located: <a href="https://developers.scaleway.com/en/quickstart/#region-and-zone">https://developers.scaleway.com/en/quickstart/#region-and-zone</a></p>
  6402. </td>
  6403. </tr>
  6404. <tr>
  6405. <td>
  6406. <code>projectId</code></br>
  6407. <em>
  6408. string
  6409. </em>
  6410. </td>
  6411. <td>
  6412. <p>ProjectID is the id of your project, which you can find in the console: <a href="https://console.scaleway.com/project/settings">https://console.scaleway.com/project/settings</a></p>
  6413. </td>
  6414. </tr>
  6415. <tr>
  6416. <td>
  6417. <code>accessKey</code></br>
  6418. <em>
  6419. <a href="#external-secrets.io/v1beta1.ScalewayProviderSecretRef">
  6420. ScalewayProviderSecretRef
  6421. </a>
  6422. </em>
  6423. </td>
  6424. <td>
  6425. <p>AccessKey is the non-secret part of the api key.</p>
  6426. </td>
  6427. </tr>
  6428. <tr>
  6429. <td>
  6430. <code>secretKey</code></br>
  6431. <em>
  6432. <a href="#external-secrets.io/v1beta1.ScalewayProviderSecretRef">
  6433. ScalewayProviderSecretRef
  6434. </a>
  6435. </em>
  6436. </td>
  6437. <td>
  6438. <p>SecretKey is the non-secret part of the api key.</p>
  6439. </td>
  6440. </tr>
  6441. </tbody>
  6442. </table>
  6443. <h3 id="external-secrets.io/v1beta1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  6444. </h3>
  6445. <p>
  6446. (<em>Appears on:</em>
  6447. <a href="#external-secrets.io/v1beta1.ScalewayProvider">ScalewayProvider</a>)
  6448. </p>
  6449. <p>
  6450. </p>
  6451. <table>
  6452. <thead>
  6453. <tr>
  6454. <th>Field</th>
  6455. <th>Description</th>
  6456. </tr>
  6457. </thead>
  6458. <tbody>
  6459. <tr>
  6460. <td>
  6461. <code>value</code></br>
  6462. <em>
  6463. string
  6464. </em>
  6465. </td>
  6466. <td>
  6467. <em>(Optional)</em>
  6468. <p>Value can be specified directly to set a value without using a secret.</p>
  6469. </td>
  6470. </tr>
  6471. <tr>
  6472. <td>
  6473. <code>secretRef</code></br>
  6474. <em>
  6475. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6476. External Secrets meta/v1.SecretKeySelector
  6477. </a>
  6478. </em>
  6479. </td>
  6480. <td>
  6481. <em>(Optional)</em>
  6482. <p>SecretRef references a key in a secret that will be used as value.</p>
  6483. </td>
  6484. </tr>
  6485. </tbody>
  6486. </table>
  6487. <h3 id="external-secrets.io/v1beta1.SecretStore">SecretStore
  6488. </h3>
  6489. <p>
  6490. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  6491. </p>
  6492. <table>
  6493. <thead>
  6494. <tr>
  6495. <th>Field</th>
  6496. <th>Description</th>
  6497. </tr>
  6498. </thead>
  6499. <tbody>
  6500. <tr>
  6501. <td>
  6502. <code>metadata</code></br>
  6503. <em>
  6504. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  6505. Kubernetes meta/v1.ObjectMeta
  6506. </a>
  6507. </em>
  6508. </td>
  6509. <td>
  6510. Refer to the Kubernetes API documentation for the fields of the
  6511. <code>metadata</code> field.
  6512. </td>
  6513. </tr>
  6514. <tr>
  6515. <td>
  6516. <code>spec</code></br>
  6517. <em>
  6518. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  6519. SecretStoreSpec
  6520. </a>
  6521. </em>
  6522. </td>
  6523. <td>
  6524. <br/>
  6525. <br/>
  6526. <table>
  6527. <tr>
  6528. <td>
  6529. <code>controller</code></br>
  6530. <em>
  6531. string
  6532. </em>
  6533. </td>
  6534. <td>
  6535. <em>(Optional)</em>
  6536. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  6537. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  6538. </td>
  6539. </tr>
  6540. <tr>
  6541. <td>
  6542. <code>provider</code></br>
  6543. <em>
  6544. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  6545. SecretStoreProvider
  6546. </a>
  6547. </em>
  6548. </td>
  6549. <td>
  6550. <p>Used to configure the provider. Only one provider may be set</p>
  6551. </td>
  6552. </tr>
  6553. <tr>
  6554. <td>
  6555. <code>retrySettings</code></br>
  6556. <em>
  6557. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  6558. SecretStoreRetrySettings
  6559. </a>
  6560. </em>
  6561. </td>
  6562. <td>
  6563. <em>(Optional)</em>
  6564. <p>Used to configure http retries if failed</p>
  6565. </td>
  6566. </tr>
  6567. <tr>
  6568. <td>
  6569. <code>refreshInterval</code></br>
  6570. <em>
  6571. int
  6572. </em>
  6573. </td>
  6574. <td>
  6575. <em>(Optional)</em>
  6576. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  6577. </td>
  6578. </tr>
  6579. <tr>
  6580. <td>
  6581. <code>conditions</code></br>
  6582. <em>
  6583. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  6584. []ClusterSecretStoreCondition
  6585. </a>
  6586. </em>
  6587. </td>
  6588. <td>
  6589. <em>(Optional)</em>
  6590. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  6591. </td>
  6592. </tr>
  6593. </table>
  6594. </td>
  6595. </tr>
  6596. <tr>
  6597. <td>
  6598. <code>status</code></br>
  6599. <em>
  6600. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  6601. SecretStoreStatus
  6602. </a>
  6603. </em>
  6604. </td>
  6605. <td>
  6606. </td>
  6607. </tr>
  6608. </tbody>
  6609. </table>
  6610. <h3 id="external-secrets.io/v1beta1.SecretStoreCapabilities">SecretStoreCapabilities
  6611. (<code>string</code> alias)</p></h3>
  6612. <p>
  6613. (<em>Appears on:</em>
  6614. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  6615. </p>
  6616. <p>
  6617. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  6618. </p>
  6619. <table>
  6620. <thead>
  6621. <tr>
  6622. <th>Value</th>
  6623. <th>Description</th>
  6624. </tr>
  6625. </thead>
  6626. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  6627. <td></td>
  6628. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  6629. <td></td>
  6630. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  6631. <td></td>
  6632. </tr></tbody>
  6633. </table>
  6634. <h3 id="external-secrets.io/v1beta1.SecretStoreConditionType">SecretStoreConditionType
  6635. (<code>string</code> alias)</p></h3>
  6636. <p>
  6637. (<em>Appears on:</em>
  6638. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  6639. </p>
  6640. <p>
  6641. </p>
  6642. <table>
  6643. <thead>
  6644. <tr>
  6645. <th>Value</th>
  6646. <th>Description</th>
  6647. </tr>
  6648. </thead>
  6649. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  6650. <td></td>
  6651. </tr></tbody>
  6652. </table>
  6653. <h3 id="external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider
  6654. </h3>
  6655. <p>
  6656. (<em>Appears on:</em>
  6657. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  6658. </p>
  6659. <p>
  6660. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  6661. </p>
  6662. <table>
  6663. <thead>
  6664. <tr>
  6665. <th>Field</th>
  6666. <th>Description</th>
  6667. </tr>
  6668. </thead>
  6669. <tbody>
  6670. <tr>
  6671. <td>
  6672. <code>aws</code></br>
  6673. <em>
  6674. <a href="#external-secrets.io/v1beta1.AWSProvider">
  6675. AWSProvider
  6676. </a>
  6677. </em>
  6678. </td>
  6679. <td>
  6680. <em>(Optional)</em>
  6681. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  6682. </td>
  6683. </tr>
  6684. <tr>
  6685. <td>
  6686. <code>azurekv</code></br>
  6687. <em>
  6688. <a href="#external-secrets.io/v1beta1.AzureKVProvider">
  6689. AzureKVProvider
  6690. </a>
  6691. </em>
  6692. </td>
  6693. <td>
  6694. <em>(Optional)</em>
  6695. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  6696. </td>
  6697. </tr>
  6698. <tr>
  6699. <td>
  6700. <code>akeyless</code></br>
  6701. <em>
  6702. <a href="#external-secrets.io/v1beta1.AkeylessProvider">
  6703. AkeylessProvider
  6704. </a>
  6705. </em>
  6706. </td>
  6707. <td>
  6708. <em>(Optional)</em>
  6709. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  6710. </td>
  6711. </tr>
  6712. <tr>
  6713. <td>
  6714. <code>vault</code></br>
  6715. <em>
  6716. <a href="#external-secrets.io/v1beta1.VaultProvider">
  6717. VaultProvider
  6718. </a>
  6719. </em>
  6720. </td>
  6721. <td>
  6722. <em>(Optional)</em>
  6723. <p>Vault configures this store to sync secrets using Hashi provider</p>
  6724. </td>
  6725. </tr>
  6726. <tr>
  6727. <td>
  6728. <code>gcpsm</code></br>
  6729. <em>
  6730. <a href="#external-secrets.io/v1beta1.GCPSMProvider">
  6731. GCPSMProvider
  6732. </a>
  6733. </em>
  6734. </td>
  6735. <td>
  6736. <em>(Optional)</em>
  6737. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  6738. </td>
  6739. </tr>
  6740. <tr>
  6741. <td>
  6742. <code>oracle</code></br>
  6743. <em>
  6744. <a href="#external-secrets.io/v1beta1.OracleProvider">
  6745. OracleProvider
  6746. </a>
  6747. </em>
  6748. </td>
  6749. <td>
  6750. <em>(Optional)</em>
  6751. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  6752. </td>
  6753. </tr>
  6754. <tr>
  6755. <td>
  6756. <code>ibm</code></br>
  6757. <em>
  6758. <a href="#external-secrets.io/v1beta1.IBMProvider">
  6759. IBMProvider
  6760. </a>
  6761. </em>
  6762. </td>
  6763. <td>
  6764. <em>(Optional)</em>
  6765. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  6766. </td>
  6767. </tr>
  6768. <tr>
  6769. <td>
  6770. <code>yandexcertificatemanager</code></br>
  6771. <em>
  6772. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">
  6773. YandexCertificateManagerProvider
  6774. </a>
  6775. </em>
  6776. </td>
  6777. <td>
  6778. <em>(Optional)</em>
  6779. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  6780. </td>
  6781. </tr>
  6782. <tr>
  6783. <td>
  6784. <code>yandexlockbox</code></br>
  6785. <em>
  6786. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">
  6787. YandexLockboxProvider
  6788. </a>
  6789. </em>
  6790. </td>
  6791. <td>
  6792. <em>(Optional)</em>
  6793. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  6794. </td>
  6795. </tr>
  6796. <tr>
  6797. <td>
  6798. <code>gitlab</code></br>
  6799. <em>
  6800. <a href="#external-secrets.io/v1beta1.GitlabProvider">
  6801. GitlabProvider
  6802. </a>
  6803. </em>
  6804. </td>
  6805. <td>
  6806. <em>(Optional)</em>
  6807. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  6808. </td>
  6809. </tr>
  6810. <tr>
  6811. <td>
  6812. <code>alibaba</code></br>
  6813. <em>
  6814. <a href="#external-secrets.io/v1beta1.AlibabaProvider">
  6815. AlibabaProvider
  6816. </a>
  6817. </em>
  6818. </td>
  6819. <td>
  6820. <em>(Optional)</em>
  6821. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  6822. </td>
  6823. </tr>
  6824. <tr>
  6825. <td>
  6826. <code>onepassword</code></br>
  6827. <em>
  6828. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">
  6829. OnePasswordProvider
  6830. </a>
  6831. </em>
  6832. </td>
  6833. <td>
  6834. <em>(Optional)</em>
  6835. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  6836. </td>
  6837. </tr>
  6838. <tr>
  6839. <td>
  6840. <code>webhook</code></br>
  6841. <em>
  6842. <a href="#external-secrets.io/v1beta1.WebhookProvider">
  6843. WebhookProvider
  6844. </a>
  6845. </em>
  6846. </td>
  6847. <td>
  6848. <em>(Optional)</em>
  6849. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  6850. </td>
  6851. </tr>
  6852. <tr>
  6853. <td>
  6854. <code>kubernetes</code></br>
  6855. <em>
  6856. <a href="#external-secrets.io/v1beta1.KubernetesProvider">
  6857. KubernetesProvider
  6858. </a>
  6859. </em>
  6860. </td>
  6861. <td>
  6862. <em>(Optional)</em>
  6863. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  6864. </td>
  6865. </tr>
  6866. <tr>
  6867. <td>
  6868. <code>fake</code></br>
  6869. <em>
  6870. <a href="#external-secrets.io/v1beta1.FakeProvider">
  6871. FakeProvider
  6872. </a>
  6873. </em>
  6874. </td>
  6875. <td>
  6876. <em>(Optional)</em>
  6877. <p>Fake configures a store with static key/value pairs</p>
  6878. </td>
  6879. </tr>
  6880. <tr>
  6881. <td>
  6882. <code>senhasegura</code></br>
  6883. <em>
  6884. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">
  6885. SenhaseguraProvider
  6886. </a>
  6887. </em>
  6888. </td>
  6889. <td>
  6890. <em>(Optional)</em>
  6891. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  6892. </td>
  6893. </tr>
  6894. <tr>
  6895. <td>
  6896. <code>scaleway</code></br>
  6897. <em>
  6898. <a href="#external-secrets.io/v1beta1.ScalewayProvider">
  6899. ScalewayProvider
  6900. </a>
  6901. </em>
  6902. </td>
  6903. <td>
  6904. <em>(Optional)</em>
  6905. <p>Scaleway</p>
  6906. </td>
  6907. </tr>
  6908. <tr>
  6909. <td>
  6910. <code>doppler</code></br>
  6911. <em>
  6912. <a href="#external-secrets.io/v1beta1.DopplerProvider">
  6913. DopplerProvider
  6914. </a>
  6915. </em>
  6916. </td>
  6917. <td>
  6918. <em>(Optional)</em>
  6919. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  6920. </td>
  6921. </tr>
  6922. <tr>
  6923. <td>
  6924. <code>onboardbase</code></br>
  6925. <em>
  6926. <a href="#external-secrets.io/v1beta1.OnboardbaseProvider">
  6927. OnboardbaseProvider
  6928. </a>
  6929. </em>
  6930. </td>
  6931. <td>
  6932. <em>(Optional)</em>
  6933. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  6934. </td>
  6935. </tr>
  6936. <tr>
  6937. <td>
  6938. <code>keepersecurity</code></br>
  6939. <em>
  6940. <a href="#external-secrets.io/v1beta1.KeeperSecurityProvider">
  6941. KeeperSecurityProvider
  6942. </a>
  6943. </em>
  6944. </td>
  6945. <td>
  6946. <em>(Optional)</em>
  6947. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  6948. </td>
  6949. </tr>
  6950. <tr>
  6951. <td>
  6952. <code>conjur</code></br>
  6953. <em>
  6954. <a href="#external-secrets.io/v1beta1.ConjurProvider">
  6955. ConjurProvider
  6956. </a>
  6957. </em>
  6958. </td>
  6959. <td>
  6960. <em>(Optional)</em>
  6961. <p>Conjur configures this store to sync secrets using conjur provider</p>
  6962. </td>
  6963. </tr>
  6964. <tr>
  6965. <td>
  6966. <code>delinea</code></br>
  6967. <em>
  6968. <a href="#external-secrets.io/v1beta1.DelineaProvider">
  6969. DelineaProvider
  6970. </a>
  6971. </em>
  6972. </td>
  6973. <td>
  6974. <em>(Optional)</em>
  6975. <p>Delinea DevOps Secrets Vault
  6976. <a href="https://docs.delinea.com/online-help/products/devops-secrets-vault/current">https://docs.delinea.com/online-help/products/devops-secrets-vault/current</a></p>
  6977. </td>
  6978. </tr>
  6979. <tr>
  6980. <td>
  6981. <code>chef</code></br>
  6982. <em>
  6983. <a href="#external-secrets.io/v1beta1.ChefProvider">
  6984. ChefProvider
  6985. </a>
  6986. </em>
  6987. </td>
  6988. <td>
  6989. <em>(Optional)</em>
  6990. <p>Chef configures this store to sync secrets with chef server</p>
  6991. </td>
  6992. </tr>
  6993. <tr>
  6994. <td>
  6995. <code>pulumi</code></br>
  6996. <em>
  6997. <a href="#external-secrets.io/v1beta1.PulumiProvider">
  6998. PulumiProvider
  6999. </a>
  7000. </em>
  7001. </td>
  7002. <td>
  7003. <em>(Optional)</em>
  7004. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  7005. </td>
  7006. </tr>
  7007. <tr>
  7008. <td>
  7009. <code>fortanix</code></br>
  7010. <em>
  7011. <a href="#external-secrets.io/v1beta1.FortanixProvider">
  7012. FortanixProvider
  7013. </a>
  7014. </em>
  7015. </td>
  7016. <td>
  7017. <em>(Optional)</em>
  7018. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  7019. </td>
  7020. </tr>
  7021. <tr>
  7022. <td>
  7023. <code>passworddepot</code></br>
  7024. <em>
  7025. <a href="#external-secrets.io/v1beta1.PasswordDepotProvider">
  7026. PasswordDepotProvider
  7027. </a>
  7028. </em>
  7029. </td>
  7030. <td>
  7031. <em>(Optional)</em>
  7032. </td>
  7033. </tr>
  7034. <tr>
  7035. <td>
  7036. <code>passbolt</code></br>
  7037. <em>
  7038. <a href="#external-secrets.io/v1beta1.PassboltProvider">
  7039. PassboltProvider
  7040. </a>
  7041. </em>
  7042. </td>
  7043. <td>
  7044. <em>(Optional)</em>
  7045. </td>
  7046. </tr>
  7047. </tbody>
  7048. </table>
  7049. <h3 id="external-secrets.io/v1beta1.SecretStoreRef">SecretStoreRef
  7050. </h3>
  7051. <p>
  7052. (<em>Appears on:</em>
  7053. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>,
  7054. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  7055. <a href="#external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef</a>)
  7056. </p>
  7057. <p>
  7058. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  7059. </p>
  7060. <table>
  7061. <thead>
  7062. <tr>
  7063. <th>Field</th>
  7064. <th>Description</th>
  7065. </tr>
  7066. </thead>
  7067. <tbody>
  7068. <tr>
  7069. <td>
  7070. <code>name</code></br>
  7071. <em>
  7072. string
  7073. </em>
  7074. </td>
  7075. <td>
  7076. <p>Name of the SecretStore resource</p>
  7077. </td>
  7078. </tr>
  7079. <tr>
  7080. <td>
  7081. <code>kind</code></br>
  7082. <em>
  7083. string
  7084. </em>
  7085. </td>
  7086. <td>
  7087. <em>(Optional)</em>
  7088. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  7089. Defaults to <code>SecretStore</code></p>
  7090. </td>
  7091. </tr>
  7092. </tbody>
  7093. </table>
  7094. <h3 id="external-secrets.io/v1beta1.SecretStoreRetrySettings">SecretStoreRetrySettings
  7095. </h3>
  7096. <p>
  7097. (<em>Appears on:</em>
  7098. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  7099. </p>
  7100. <p>
  7101. </p>
  7102. <table>
  7103. <thead>
  7104. <tr>
  7105. <th>Field</th>
  7106. <th>Description</th>
  7107. </tr>
  7108. </thead>
  7109. <tbody>
  7110. <tr>
  7111. <td>
  7112. <code>maxRetries</code></br>
  7113. <em>
  7114. int32
  7115. </em>
  7116. </td>
  7117. <td>
  7118. </td>
  7119. </tr>
  7120. <tr>
  7121. <td>
  7122. <code>retryInterval</code></br>
  7123. <em>
  7124. string
  7125. </em>
  7126. </td>
  7127. <td>
  7128. </td>
  7129. </tr>
  7130. </tbody>
  7131. </table>
  7132. <h3 id="external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec
  7133. </h3>
  7134. <p>
  7135. (<em>Appears on:</em>
  7136. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  7137. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  7138. </p>
  7139. <p>
  7140. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  7141. </p>
  7142. <table>
  7143. <thead>
  7144. <tr>
  7145. <th>Field</th>
  7146. <th>Description</th>
  7147. </tr>
  7148. </thead>
  7149. <tbody>
  7150. <tr>
  7151. <td>
  7152. <code>controller</code></br>
  7153. <em>
  7154. string
  7155. </em>
  7156. </td>
  7157. <td>
  7158. <em>(Optional)</em>
  7159. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  7160. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  7161. </td>
  7162. </tr>
  7163. <tr>
  7164. <td>
  7165. <code>provider</code></br>
  7166. <em>
  7167. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  7168. SecretStoreProvider
  7169. </a>
  7170. </em>
  7171. </td>
  7172. <td>
  7173. <p>Used to configure the provider. Only one provider may be set</p>
  7174. </td>
  7175. </tr>
  7176. <tr>
  7177. <td>
  7178. <code>retrySettings</code></br>
  7179. <em>
  7180. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  7181. SecretStoreRetrySettings
  7182. </a>
  7183. </em>
  7184. </td>
  7185. <td>
  7186. <em>(Optional)</em>
  7187. <p>Used to configure http retries if failed</p>
  7188. </td>
  7189. </tr>
  7190. <tr>
  7191. <td>
  7192. <code>refreshInterval</code></br>
  7193. <em>
  7194. int
  7195. </em>
  7196. </td>
  7197. <td>
  7198. <em>(Optional)</em>
  7199. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  7200. </td>
  7201. </tr>
  7202. <tr>
  7203. <td>
  7204. <code>conditions</code></br>
  7205. <em>
  7206. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  7207. []ClusterSecretStoreCondition
  7208. </a>
  7209. </em>
  7210. </td>
  7211. <td>
  7212. <em>(Optional)</em>
  7213. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  7214. </td>
  7215. </tr>
  7216. </tbody>
  7217. </table>
  7218. <h3 id="external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus
  7219. </h3>
  7220. <p>
  7221. (<em>Appears on:</em>
  7222. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  7223. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  7224. </p>
  7225. <p>
  7226. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  7227. </p>
  7228. <table>
  7229. <thead>
  7230. <tr>
  7231. <th>Field</th>
  7232. <th>Description</th>
  7233. </tr>
  7234. </thead>
  7235. <tbody>
  7236. <tr>
  7237. <td>
  7238. <code>conditions</code></br>
  7239. <em>
  7240. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">
  7241. []SecretStoreStatusCondition
  7242. </a>
  7243. </em>
  7244. </td>
  7245. <td>
  7246. <em>(Optional)</em>
  7247. </td>
  7248. </tr>
  7249. <tr>
  7250. <td>
  7251. <code>capabilities</code></br>
  7252. <em>
  7253. <a href="#external-secrets.io/v1beta1.SecretStoreCapabilities">
  7254. SecretStoreCapabilities
  7255. </a>
  7256. </em>
  7257. </td>
  7258. <td>
  7259. <em>(Optional)</em>
  7260. </td>
  7261. </tr>
  7262. </tbody>
  7263. </table>
  7264. <h3 id="external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition
  7265. </h3>
  7266. <p>
  7267. (<em>Appears on:</em>
  7268. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  7269. </p>
  7270. <p>
  7271. </p>
  7272. <table>
  7273. <thead>
  7274. <tr>
  7275. <th>Field</th>
  7276. <th>Description</th>
  7277. </tr>
  7278. </thead>
  7279. <tbody>
  7280. <tr>
  7281. <td>
  7282. <code>type</code></br>
  7283. <em>
  7284. <a href="#external-secrets.io/v1beta1.SecretStoreConditionType">
  7285. SecretStoreConditionType
  7286. </a>
  7287. </em>
  7288. </td>
  7289. <td>
  7290. </td>
  7291. </tr>
  7292. <tr>
  7293. <td>
  7294. <code>status</code></br>
  7295. <em>
  7296. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  7297. Kubernetes core/v1.ConditionStatus
  7298. </a>
  7299. </em>
  7300. </td>
  7301. <td>
  7302. </td>
  7303. </tr>
  7304. <tr>
  7305. <td>
  7306. <code>reason</code></br>
  7307. <em>
  7308. string
  7309. </em>
  7310. </td>
  7311. <td>
  7312. <em>(Optional)</em>
  7313. </td>
  7314. </tr>
  7315. <tr>
  7316. <td>
  7317. <code>message</code></br>
  7318. <em>
  7319. string
  7320. </em>
  7321. </td>
  7322. <td>
  7323. <em>(Optional)</em>
  7324. </td>
  7325. </tr>
  7326. <tr>
  7327. <td>
  7328. <code>lastTransitionTime</code></br>
  7329. <em>
  7330. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  7331. Kubernetes meta/v1.Time
  7332. </a>
  7333. </em>
  7334. </td>
  7335. <td>
  7336. <em>(Optional)</em>
  7337. </td>
  7338. </tr>
  7339. </tbody>
  7340. </table>
  7341. <h3 id="external-secrets.io/v1beta1.SecretsClient">SecretsClient
  7342. </h3>
  7343. <p>
  7344. <p>SecretsClient provides access to secrets.</p>
  7345. </p>
  7346. <h3 id="external-secrets.io/v1beta1.SecretsManager">SecretsManager
  7347. </h3>
  7348. <p>
  7349. (<em>Appears on:</em>
  7350. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  7351. </p>
  7352. <p>
  7353. <p>SecretsManager defines how the provider behaves when interacting with AWS
  7354. SecretsManager. Some of these settings are only applicable to controlling how
  7355. secrets are deleted, and hence only apply to PushSecret (and only when
  7356. deletionPolicy is set to Delete).</p>
  7357. </p>
  7358. <table>
  7359. <thead>
  7360. <tr>
  7361. <th>Field</th>
  7362. <th>Description</th>
  7363. </tr>
  7364. </thead>
  7365. <tbody>
  7366. <tr>
  7367. <td>
  7368. <code>forceDeleteWithoutRecovery</code></br>
  7369. <em>
  7370. bool
  7371. </em>
  7372. </td>
  7373. <td>
  7374. <em>(Optional)</em>
  7375. <p>Specifies whether to delete the secret without any recovery window. You
  7376. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  7377. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  7378. recovery window.
  7379. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery</a></p>
  7380. </td>
  7381. </tr>
  7382. <tr>
  7383. <td>
  7384. <code>recoveryWindowInDays</code></br>
  7385. <em>
  7386. int64
  7387. </em>
  7388. </td>
  7389. <td>
  7390. <em>(Optional)</em>
  7391. <p>The number of days from 7 to 30 that Secrets Manager waits before
  7392. permanently deleting the secret. You can&rsquo;t use both this parameter and
  7393. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  7394. then by default Secrets Manager uses a 30 day recovery window.
  7395. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays</a></p>
  7396. </td>
  7397. </tr>
  7398. </tbody>
  7399. </table>
  7400. <h3 id="external-secrets.io/v1beta1.SenhaseguraAuth">SenhaseguraAuth
  7401. </h3>
  7402. <p>
  7403. (<em>Appears on:</em>
  7404. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  7405. </p>
  7406. <p>
  7407. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  7408. </p>
  7409. <table>
  7410. <thead>
  7411. <tr>
  7412. <th>Field</th>
  7413. <th>Description</th>
  7414. </tr>
  7415. </thead>
  7416. <tbody>
  7417. <tr>
  7418. <td>
  7419. <code>clientId</code></br>
  7420. <em>
  7421. string
  7422. </em>
  7423. </td>
  7424. <td>
  7425. </td>
  7426. </tr>
  7427. <tr>
  7428. <td>
  7429. <code>clientSecretSecretRef</code></br>
  7430. <em>
  7431. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7432. External Secrets meta/v1.SecretKeySelector
  7433. </a>
  7434. </em>
  7435. </td>
  7436. <td>
  7437. </td>
  7438. </tr>
  7439. </tbody>
  7440. </table>
  7441. <h3 id="external-secrets.io/v1beta1.SenhaseguraModuleType">SenhaseguraModuleType
  7442. (<code>string</code> alias)</p></h3>
  7443. <p>
  7444. (<em>Appears on:</em>
  7445. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  7446. </p>
  7447. <p>
  7448. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  7449. </p>
  7450. <table>
  7451. <thead>
  7452. <tr>
  7453. <th>Value</th>
  7454. <th>Description</th>
  7455. </tr>
  7456. </thead>
  7457. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  7458. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  7459. see: https://senhasegura.com/devops
  7460. </code></pre>
  7461. </td>
  7462. </tr></tbody>
  7463. </table>
  7464. <h3 id="external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider
  7465. </h3>
  7466. <p>
  7467. (<em>Appears on:</em>
  7468. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  7469. </p>
  7470. <p>
  7471. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  7472. </p>
  7473. <table>
  7474. <thead>
  7475. <tr>
  7476. <th>Field</th>
  7477. <th>Description</th>
  7478. </tr>
  7479. </thead>
  7480. <tbody>
  7481. <tr>
  7482. <td>
  7483. <code>url</code></br>
  7484. <em>
  7485. string
  7486. </em>
  7487. </td>
  7488. <td>
  7489. <p>URL of senhasegura</p>
  7490. </td>
  7491. </tr>
  7492. <tr>
  7493. <td>
  7494. <code>module</code></br>
  7495. <em>
  7496. <a href="#external-secrets.io/v1beta1.SenhaseguraModuleType">
  7497. SenhaseguraModuleType
  7498. </a>
  7499. </em>
  7500. </td>
  7501. <td>
  7502. <p>Module defines which senhasegura module should be used to get secrets</p>
  7503. </td>
  7504. </tr>
  7505. <tr>
  7506. <td>
  7507. <code>auth</code></br>
  7508. <em>
  7509. <a href="#external-secrets.io/v1beta1.SenhaseguraAuth">
  7510. SenhaseguraAuth
  7511. </a>
  7512. </em>
  7513. </td>
  7514. <td>
  7515. <p>Auth defines parameters to authenticate in senhasegura</p>
  7516. </td>
  7517. </tr>
  7518. <tr>
  7519. <td>
  7520. <code>ignoreSslCertificate</code></br>
  7521. <em>
  7522. bool
  7523. </em>
  7524. </td>
  7525. <td>
  7526. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  7527. </td>
  7528. </tr>
  7529. </tbody>
  7530. </table>
  7531. <h3 id="external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  7532. </h3>
  7533. <p>
  7534. (<em>Appears on:</em>
  7535. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  7536. </p>
  7537. <p>
  7538. <p>StoreGeneratorSourceRef allows you to override the source
  7539. from which the secret will be pulled from.
  7540. You can define at maximum one property.</p>
  7541. </p>
  7542. <table>
  7543. <thead>
  7544. <tr>
  7545. <th>Field</th>
  7546. <th>Description</th>
  7547. </tr>
  7548. </thead>
  7549. <tbody>
  7550. <tr>
  7551. <td>
  7552. <code>storeRef</code></br>
  7553. <em>
  7554. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  7555. SecretStoreRef
  7556. </a>
  7557. </em>
  7558. </td>
  7559. <td>
  7560. <em>(Optional)</em>
  7561. </td>
  7562. </tr>
  7563. <tr>
  7564. <td>
  7565. <code>generatorRef</code></br>
  7566. <em>
  7567. <a href="#external-secrets.io/v1beta1.GeneratorRef">
  7568. GeneratorRef
  7569. </a>
  7570. </em>
  7571. </td>
  7572. <td>
  7573. <em>(Optional)</em>
  7574. <p>GeneratorRef points to a generator custom resource.</p>
  7575. </td>
  7576. </tr>
  7577. </tbody>
  7578. </table>
  7579. <h3 id="external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef
  7580. </h3>
  7581. <p>
  7582. (<em>Appears on:</em>
  7583. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>)
  7584. </p>
  7585. <p>
  7586. <p>StoreSourceRef allows you to override the SecretStore source
  7587. from which the secret will be pulled from.
  7588. You can define at maximum one property.</p>
  7589. </p>
  7590. <table>
  7591. <thead>
  7592. <tr>
  7593. <th>Field</th>
  7594. <th>Description</th>
  7595. </tr>
  7596. </thead>
  7597. <tbody>
  7598. <tr>
  7599. <td>
  7600. <code>storeRef</code></br>
  7601. <em>
  7602. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  7603. SecretStoreRef
  7604. </a>
  7605. </em>
  7606. </td>
  7607. <td>
  7608. <em>(Optional)</em>
  7609. </td>
  7610. </tr>
  7611. <tr>
  7612. <td>
  7613. <code>generatorRef</code></br>
  7614. <em>
  7615. <a href="#external-secrets.io/v1beta1.GeneratorRef">
  7616. GeneratorRef
  7617. </a>
  7618. </em>
  7619. </td>
  7620. <td>
  7621. <p>GeneratorRef points to a generator custom resource.</p>
  7622. <p>Deprecated: The generatorRef is not implemented in .data[].
  7623. this will be removed with v1.</p>
  7624. </td>
  7625. </tr>
  7626. </tbody>
  7627. </table>
  7628. <h3 id="external-secrets.io/v1beta1.Tag">Tag
  7629. </h3>
  7630. <p>
  7631. </p>
  7632. <table>
  7633. <thead>
  7634. <tr>
  7635. <th>Field</th>
  7636. <th>Description</th>
  7637. </tr>
  7638. </thead>
  7639. <tbody>
  7640. <tr>
  7641. <td>
  7642. <code>key</code></br>
  7643. <em>
  7644. string
  7645. </em>
  7646. </td>
  7647. <td>
  7648. </td>
  7649. </tr>
  7650. <tr>
  7651. <td>
  7652. <code>value</code></br>
  7653. <em>
  7654. string
  7655. </em>
  7656. </td>
  7657. <td>
  7658. </td>
  7659. </tr>
  7660. </tbody>
  7661. </table>
  7662. <h3 id="external-secrets.io/v1beta1.TemplateEngineVersion">TemplateEngineVersion
  7663. (<code>string</code> alias)</p></h3>
  7664. <p>
  7665. (<em>Appears on:</em>
  7666. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7667. </p>
  7668. <p>
  7669. </p>
  7670. <table>
  7671. <thead>
  7672. <tr>
  7673. <th>Value</th>
  7674. <th>Description</th>
  7675. </tr>
  7676. </thead>
  7677. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  7678. <td></td>
  7679. </tr><tr><td><p>&#34;v2&#34;</p></td>
  7680. <td></td>
  7681. </tr></tbody>
  7682. </table>
  7683. <h3 id="external-secrets.io/v1beta1.TemplateFrom">TemplateFrom
  7684. </h3>
  7685. <p>
  7686. (<em>Appears on:</em>
  7687. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7688. </p>
  7689. <p>
  7690. </p>
  7691. <table>
  7692. <thead>
  7693. <tr>
  7694. <th>Field</th>
  7695. <th>Description</th>
  7696. </tr>
  7697. </thead>
  7698. <tbody>
  7699. <tr>
  7700. <td>
  7701. <code>configMap</code></br>
  7702. <em>
  7703. <a href="#external-secrets.io/v1beta1.TemplateRef">
  7704. TemplateRef
  7705. </a>
  7706. </em>
  7707. </td>
  7708. <td>
  7709. </td>
  7710. </tr>
  7711. <tr>
  7712. <td>
  7713. <code>secret</code></br>
  7714. <em>
  7715. <a href="#external-secrets.io/v1beta1.TemplateRef">
  7716. TemplateRef
  7717. </a>
  7718. </em>
  7719. </td>
  7720. <td>
  7721. </td>
  7722. </tr>
  7723. <tr>
  7724. <td>
  7725. <code>target</code></br>
  7726. <em>
  7727. <a href="#external-secrets.io/v1beta1.TemplateTarget">
  7728. TemplateTarget
  7729. </a>
  7730. </em>
  7731. </td>
  7732. <td>
  7733. <em>(Optional)</em>
  7734. </td>
  7735. </tr>
  7736. <tr>
  7737. <td>
  7738. <code>literal</code></br>
  7739. <em>
  7740. string
  7741. </em>
  7742. </td>
  7743. <td>
  7744. <em>(Optional)</em>
  7745. </td>
  7746. </tr>
  7747. </tbody>
  7748. </table>
  7749. <h3 id="external-secrets.io/v1beta1.TemplateMergePolicy">TemplateMergePolicy
  7750. (<code>string</code> alias)</p></h3>
  7751. <p>
  7752. (<em>Appears on:</em>
  7753. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7754. </p>
  7755. <p>
  7756. </p>
  7757. <table>
  7758. <thead>
  7759. <tr>
  7760. <th>Value</th>
  7761. <th>Description</th>
  7762. </tr>
  7763. </thead>
  7764. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  7765. <td></td>
  7766. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  7767. <td></td>
  7768. </tr></tbody>
  7769. </table>
  7770. <h3 id="external-secrets.io/v1beta1.TemplateRef">TemplateRef
  7771. </h3>
  7772. <p>
  7773. (<em>Appears on:</em>
  7774. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  7775. </p>
  7776. <p>
  7777. </p>
  7778. <table>
  7779. <thead>
  7780. <tr>
  7781. <th>Field</th>
  7782. <th>Description</th>
  7783. </tr>
  7784. </thead>
  7785. <tbody>
  7786. <tr>
  7787. <td>
  7788. <code>name</code></br>
  7789. <em>
  7790. string
  7791. </em>
  7792. </td>
  7793. <td>
  7794. </td>
  7795. </tr>
  7796. <tr>
  7797. <td>
  7798. <code>items</code></br>
  7799. <em>
  7800. <a href="#external-secrets.io/v1beta1.TemplateRefItem">
  7801. []TemplateRefItem
  7802. </a>
  7803. </em>
  7804. </td>
  7805. <td>
  7806. </td>
  7807. </tr>
  7808. </tbody>
  7809. </table>
  7810. <h3 id="external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem
  7811. </h3>
  7812. <p>
  7813. (<em>Appears on:</em>
  7814. <a href="#external-secrets.io/v1beta1.TemplateRef">TemplateRef</a>)
  7815. </p>
  7816. <p>
  7817. </p>
  7818. <table>
  7819. <thead>
  7820. <tr>
  7821. <th>Field</th>
  7822. <th>Description</th>
  7823. </tr>
  7824. </thead>
  7825. <tbody>
  7826. <tr>
  7827. <td>
  7828. <code>key</code></br>
  7829. <em>
  7830. string
  7831. </em>
  7832. </td>
  7833. <td>
  7834. </td>
  7835. </tr>
  7836. <tr>
  7837. <td>
  7838. <code>templateAs</code></br>
  7839. <em>
  7840. <a href="#external-secrets.io/v1beta1.TemplateScope">
  7841. TemplateScope
  7842. </a>
  7843. </em>
  7844. </td>
  7845. <td>
  7846. </td>
  7847. </tr>
  7848. </tbody>
  7849. </table>
  7850. <h3 id="external-secrets.io/v1beta1.TemplateScope">TemplateScope
  7851. (<code>string</code> alias)</p></h3>
  7852. <p>
  7853. (<em>Appears on:</em>
  7854. <a href="#external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem</a>)
  7855. </p>
  7856. <p>
  7857. </p>
  7858. <table>
  7859. <thead>
  7860. <tr>
  7861. <th>Value</th>
  7862. <th>Description</th>
  7863. </tr>
  7864. </thead>
  7865. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  7866. <td></td>
  7867. </tr><tr><td><p>&#34;Values&#34;</p></td>
  7868. <td></td>
  7869. </tr></tbody>
  7870. </table>
  7871. <h3 id="external-secrets.io/v1beta1.TemplateTarget">TemplateTarget
  7872. (<code>string</code> alias)</p></h3>
  7873. <p>
  7874. (<em>Appears on:</em>
  7875. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  7876. </p>
  7877. <p>
  7878. </p>
  7879. <table>
  7880. <thead>
  7881. <tr>
  7882. <th>Value</th>
  7883. <th>Description</th>
  7884. </tr>
  7885. </thead>
  7886. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  7887. <td></td>
  7888. </tr><tr><td><p>&#34;Data&#34;</p></td>
  7889. <td></td>
  7890. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  7891. <td></td>
  7892. </tr></tbody>
  7893. </table>
  7894. <h3 id="external-secrets.io/v1beta1.TokenAuth">TokenAuth
  7895. </h3>
  7896. <p>
  7897. (<em>Appears on:</em>
  7898. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  7899. </p>
  7900. <p>
  7901. </p>
  7902. <table>
  7903. <thead>
  7904. <tr>
  7905. <th>Field</th>
  7906. <th>Description</th>
  7907. </tr>
  7908. </thead>
  7909. <tbody>
  7910. <tr>
  7911. <td>
  7912. <code>bearerToken</code></br>
  7913. <em>
  7914. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7915. External Secrets meta/v1.SecretKeySelector
  7916. </a>
  7917. </em>
  7918. </td>
  7919. <td>
  7920. </td>
  7921. </tr>
  7922. </tbody>
  7923. </table>
  7924. <h3 id="external-secrets.io/v1beta1.ValidationResult">ValidationResult
  7925. (<code>byte</code> alias)</p></h3>
  7926. <p>
  7927. </p>
  7928. <table>
  7929. <thead>
  7930. <tr>
  7931. <th>Value</th>
  7932. <th>Description</th>
  7933. </tr>
  7934. </thead>
  7935. <tbody><tr><td><p>2</p></td>
  7936. <td><p>Error indicates that there is a misconfiguration.</p>
  7937. </td>
  7938. </tr><tr><td><p>0</p></td>
  7939. <td><p>Ready indicates that the client is configured correctly
  7940. and can be used.</p>
  7941. </td>
  7942. </tr><tr><td><p>1</p></td>
  7943. <td><p>Unknown indicates that the client can be used
  7944. but information is missing and it can not be validated.</p>
  7945. </td>
  7946. </tr></tbody>
  7947. </table>
  7948. <h3 id="external-secrets.io/v1beta1.VaultAppRole">VaultAppRole
  7949. </h3>
  7950. <p>
  7951. (<em>Appears on:</em>
  7952. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  7953. </p>
  7954. <p>
  7955. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  7956. with the role and secret stored in a Kubernetes Secret resource.</p>
  7957. </p>
  7958. <table>
  7959. <thead>
  7960. <tr>
  7961. <th>Field</th>
  7962. <th>Description</th>
  7963. </tr>
  7964. </thead>
  7965. <tbody>
  7966. <tr>
  7967. <td>
  7968. <code>path</code></br>
  7969. <em>
  7970. string
  7971. </em>
  7972. </td>
  7973. <td>
  7974. <p>Path where the App Role authentication backend is mounted
  7975. in Vault, e.g: &ldquo;approle&rdquo;</p>
  7976. </td>
  7977. </tr>
  7978. <tr>
  7979. <td>
  7980. <code>roleId</code></br>
  7981. <em>
  7982. string
  7983. </em>
  7984. </td>
  7985. <td>
  7986. <em>(Optional)</em>
  7987. <p>RoleID configured in the App Role authentication backend when setting
  7988. up the authentication backend in Vault.</p>
  7989. </td>
  7990. </tr>
  7991. <tr>
  7992. <td>
  7993. <code>roleRef</code></br>
  7994. <em>
  7995. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7996. External Secrets meta/v1.SecretKeySelector
  7997. </a>
  7998. </em>
  7999. </td>
  8000. <td>
  8001. <em>(Optional)</em>
  8002. <p>Reference to a key in a Secret that contains the App Role ID used
  8003. to authenticate with Vault.
  8004. The <code>key</code> field must be specified and denotes which entry within the Secret
  8005. resource is used as the app role id.</p>
  8006. </td>
  8007. </tr>
  8008. <tr>
  8009. <td>
  8010. <code>secretRef</code></br>
  8011. <em>
  8012. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8013. External Secrets meta/v1.SecretKeySelector
  8014. </a>
  8015. </em>
  8016. </td>
  8017. <td>
  8018. <p>Reference to a key in a Secret that contains the App Role secret used
  8019. to authenticate with Vault.
  8020. The <code>key</code> field must be specified and denotes which entry within the Secret
  8021. resource is used as the app role secret.</p>
  8022. </td>
  8023. </tr>
  8024. </tbody>
  8025. </table>
  8026. <h3 id="external-secrets.io/v1beta1.VaultAuth">VaultAuth
  8027. </h3>
  8028. <p>
  8029. (<em>Appears on:</em>
  8030. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  8031. </p>
  8032. <p>
  8033. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  8034. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  8035. can be specified. A namespace to authenticate against can optionally be specified.</p>
  8036. </p>
  8037. <table>
  8038. <thead>
  8039. <tr>
  8040. <th>Field</th>
  8041. <th>Description</th>
  8042. </tr>
  8043. </thead>
  8044. <tbody>
  8045. <tr>
  8046. <td>
  8047. <code>namespace</code></br>
  8048. <em>
  8049. string
  8050. </em>
  8051. </td>
  8052. <td>
  8053. <em>(Optional)</em>
  8054. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  8055. Namespaces is a set of features within Vault Enterprise that allows
  8056. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  8057. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  8058. This will default to Vault.Namespace field if set, or empty otherwise</p>
  8059. </td>
  8060. </tr>
  8061. <tr>
  8062. <td>
  8063. <code>tokenSecretRef</code></br>
  8064. <em>
  8065. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8066. External Secrets meta/v1.SecretKeySelector
  8067. </a>
  8068. </em>
  8069. </td>
  8070. <td>
  8071. <em>(Optional)</em>
  8072. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  8073. </td>
  8074. </tr>
  8075. <tr>
  8076. <td>
  8077. <code>appRole</code></br>
  8078. <em>
  8079. <a href="#external-secrets.io/v1beta1.VaultAppRole">
  8080. VaultAppRole
  8081. </a>
  8082. </em>
  8083. </td>
  8084. <td>
  8085. <em>(Optional)</em>
  8086. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  8087. with the role and secret stored in a Kubernetes Secret resource.</p>
  8088. </td>
  8089. </tr>
  8090. <tr>
  8091. <td>
  8092. <code>kubernetes</code></br>
  8093. <em>
  8094. <a href="#external-secrets.io/v1beta1.VaultKubernetesAuth">
  8095. VaultKubernetesAuth
  8096. </a>
  8097. </em>
  8098. </td>
  8099. <td>
  8100. <em>(Optional)</em>
  8101. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  8102. token stored in the named Secret resource to the Vault server.</p>
  8103. </td>
  8104. </tr>
  8105. <tr>
  8106. <td>
  8107. <code>ldap</code></br>
  8108. <em>
  8109. <a href="#external-secrets.io/v1beta1.VaultLdapAuth">
  8110. VaultLdapAuth
  8111. </a>
  8112. </em>
  8113. </td>
  8114. <td>
  8115. <em>(Optional)</em>
  8116. <p>Ldap authenticates with Vault by passing username/password pair using
  8117. the LDAP authentication method</p>
  8118. </td>
  8119. </tr>
  8120. <tr>
  8121. <td>
  8122. <code>jwt</code></br>
  8123. <em>
  8124. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">
  8125. VaultJwtAuth
  8126. </a>
  8127. </em>
  8128. </td>
  8129. <td>
  8130. <em>(Optional)</em>
  8131. <p>Jwt authenticates with Vault by passing role and JWT token using the
  8132. JWT/OIDC authentication method</p>
  8133. </td>
  8134. </tr>
  8135. <tr>
  8136. <td>
  8137. <code>cert</code></br>
  8138. <em>
  8139. <a href="#external-secrets.io/v1beta1.VaultCertAuth">
  8140. VaultCertAuth
  8141. </a>
  8142. </em>
  8143. </td>
  8144. <td>
  8145. <em>(Optional)</em>
  8146. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  8147. Cert authentication method</p>
  8148. </td>
  8149. </tr>
  8150. <tr>
  8151. <td>
  8152. <code>iam</code></br>
  8153. <em>
  8154. <a href="#external-secrets.io/v1beta1.VaultIamAuth">
  8155. VaultIamAuth
  8156. </a>
  8157. </em>
  8158. </td>
  8159. <td>
  8160. <em>(Optional)</em>
  8161. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  8162. AWS IAM authentication method</p>
  8163. </td>
  8164. </tr>
  8165. <tr>
  8166. <td>
  8167. <code>userPass</code></br>
  8168. <em>
  8169. <a href="#external-secrets.io/v1beta1.VaultUserPassAuth">
  8170. VaultUserPassAuth
  8171. </a>
  8172. </em>
  8173. </td>
  8174. <td>
  8175. <em>(Optional)</em>
  8176. <p>UserPass authenticates with Vault by passing username/password pair</p>
  8177. </td>
  8178. </tr>
  8179. </tbody>
  8180. </table>
  8181. <h3 id="external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth
  8182. </h3>
  8183. <p>
  8184. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  8185. Only one of secretRef or jwt can be specified.
  8186. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  8187. </p>
  8188. <table>
  8189. <thead>
  8190. <tr>
  8191. <th>Field</th>
  8192. <th>Description</th>
  8193. </tr>
  8194. </thead>
  8195. <tbody>
  8196. <tr>
  8197. <td>
  8198. <code>secretRef</code></br>
  8199. <em>
  8200. <a href="#external-secrets.io/v1beta1.VaultAwsAuthSecretRef">
  8201. VaultAwsAuthSecretRef
  8202. </a>
  8203. </em>
  8204. </td>
  8205. <td>
  8206. <em>(Optional)</em>
  8207. </td>
  8208. </tr>
  8209. <tr>
  8210. <td>
  8211. <code>jwt</code></br>
  8212. <em>
  8213. <a href="#external-secrets.io/v1beta1.VaultAwsJWTAuth">
  8214. VaultAwsJWTAuth
  8215. </a>
  8216. </em>
  8217. </td>
  8218. <td>
  8219. <em>(Optional)</em>
  8220. </td>
  8221. </tr>
  8222. </tbody>
  8223. </table>
  8224. <h3 id="external-secrets.io/v1beta1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  8225. </h3>
  8226. <p>
  8227. (<em>Appears on:</em>
  8228. <a href="#external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth</a>,
  8229. <a href="#external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth</a>)
  8230. </p>
  8231. <p>
  8232. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  8233. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  8234. </p>
  8235. <table>
  8236. <thead>
  8237. <tr>
  8238. <th>Field</th>
  8239. <th>Description</th>
  8240. </tr>
  8241. </thead>
  8242. <tbody>
  8243. <tr>
  8244. <td>
  8245. <code>accessKeyIDSecretRef</code></br>
  8246. <em>
  8247. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8248. External Secrets meta/v1.SecretKeySelector
  8249. </a>
  8250. </em>
  8251. </td>
  8252. <td>
  8253. <p>The AccessKeyID is used for authentication</p>
  8254. </td>
  8255. </tr>
  8256. <tr>
  8257. <td>
  8258. <code>secretAccessKeySecretRef</code></br>
  8259. <em>
  8260. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8261. External Secrets meta/v1.SecretKeySelector
  8262. </a>
  8263. </em>
  8264. </td>
  8265. <td>
  8266. <p>The SecretAccessKey is used for authentication</p>
  8267. </td>
  8268. </tr>
  8269. <tr>
  8270. <td>
  8271. <code>sessionTokenSecretRef</code></br>
  8272. <em>
  8273. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8274. External Secrets meta/v1.SecretKeySelector
  8275. </a>
  8276. </em>
  8277. </td>
  8278. <td>
  8279. <p>The SessionToken used for authentication
  8280. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  8281. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  8282. </td>
  8283. </tr>
  8284. </tbody>
  8285. </table>
  8286. <h3 id="external-secrets.io/v1beta1.VaultAwsJWTAuth">VaultAwsJWTAuth
  8287. </h3>
  8288. <p>
  8289. (<em>Appears on:</em>
  8290. <a href="#external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth</a>,
  8291. <a href="#external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth</a>)
  8292. </p>
  8293. <p>
  8294. <p>Authenticate against AWS using service account tokens.</p>
  8295. </p>
  8296. <table>
  8297. <thead>
  8298. <tr>
  8299. <th>Field</th>
  8300. <th>Description</th>
  8301. </tr>
  8302. </thead>
  8303. <tbody>
  8304. <tr>
  8305. <td>
  8306. <code>serviceAccountRef</code></br>
  8307. <em>
  8308. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8309. External Secrets meta/v1.ServiceAccountSelector
  8310. </a>
  8311. </em>
  8312. </td>
  8313. <td>
  8314. </td>
  8315. </tr>
  8316. </tbody>
  8317. </table>
  8318. <h3 id="external-secrets.io/v1beta1.VaultCertAuth">VaultCertAuth
  8319. </h3>
  8320. <p>
  8321. (<em>Appears on:</em>
  8322. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8323. </p>
  8324. <p>
  8325. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  8326. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  8327. </p>
  8328. <table>
  8329. <thead>
  8330. <tr>
  8331. <th>Field</th>
  8332. <th>Description</th>
  8333. </tr>
  8334. </thead>
  8335. <tbody>
  8336. <tr>
  8337. <td>
  8338. <code>clientCert</code></br>
  8339. <em>
  8340. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8341. External Secrets meta/v1.SecretKeySelector
  8342. </a>
  8343. </em>
  8344. </td>
  8345. <td>
  8346. <em>(Optional)</em>
  8347. <p>ClientCert is a certificate to authenticate using the Cert Vault
  8348. authentication method</p>
  8349. </td>
  8350. </tr>
  8351. <tr>
  8352. <td>
  8353. <code>secretRef</code></br>
  8354. <em>
  8355. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8356. External Secrets meta/v1.SecretKeySelector
  8357. </a>
  8358. </em>
  8359. </td>
  8360. <td>
  8361. <p>SecretRef to a key in a Secret resource containing client private key to
  8362. authenticate with Vault using the Cert authentication method</p>
  8363. </td>
  8364. </tr>
  8365. </tbody>
  8366. </table>
  8367. <h3 id="external-secrets.io/v1beta1.VaultClientTLS">VaultClientTLS
  8368. </h3>
  8369. <p>
  8370. (<em>Appears on:</em>
  8371. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  8372. </p>
  8373. <p>
  8374. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  8375. when the Vault server requires mutual authentication.</p>
  8376. </p>
  8377. <table>
  8378. <thead>
  8379. <tr>
  8380. <th>Field</th>
  8381. <th>Description</th>
  8382. </tr>
  8383. </thead>
  8384. <tbody>
  8385. <tr>
  8386. <td>
  8387. <code>certSecretRef</code></br>
  8388. <em>
  8389. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8390. External Secrets meta/v1.SecretKeySelector
  8391. </a>
  8392. </em>
  8393. </td>
  8394. <td>
  8395. <p>CertSecretRef is a certificate added to the transport layer
  8396. when communicating with the Vault server.
  8397. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  8398. </td>
  8399. </tr>
  8400. <tr>
  8401. <td>
  8402. <code>keySecretRef</code></br>
  8403. <em>
  8404. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8405. External Secrets meta/v1.SecretKeySelector
  8406. </a>
  8407. </em>
  8408. </td>
  8409. <td>
  8410. <p>KeySecretRef to a key in a Secret resource containing client private key
  8411. added to the transport layer when communicating with the Vault server.
  8412. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  8413. </td>
  8414. </tr>
  8415. </tbody>
  8416. </table>
  8417. <h3 id="external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth
  8418. </h3>
  8419. <p>
  8420. (<em>Appears on:</em>
  8421. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8422. </p>
  8423. <p>
  8424. <p>VaultIamAuth authenticates with Vault using the Vault&rsquo;s AWS IAM authentication method. Refer: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  8425. </p>
  8426. <table>
  8427. <thead>
  8428. <tr>
  8429. <th>Field</th>
  8430. <th>Description</th>
  8431. </tr>
  8432. </thead>
  8433. <tbody>
  8434. <tr>
  8435. <td>
  8436. <code>path</code></br>
  8437. <em>
  8438. string
  8439. </em>
  8440. </td>
  8441. <td>
  8442. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  8443. </td>
  8444. </tr>
  8445. <tr>
  8446. <td>
  8447. <code>region</code></br>
  8448. <em>
  8449. string
  8450. </em>
  8451. </td>
  8452. <td>
  8453. <p>AWS region</p>
  8454. </td>
  8455. </tr>
  8456. <tr>
  8457. <td>
  8458. <code>role</code></br>
  8459. <em>
  8460. string
  8461. </em>
  8462. </td>
  8463. <td>
  8464. <p>This is the AWS role to be assumed before talking to vault</p>
  8465. </td>
  8466. </tr>
  8467. <tr>
  8468. <td>
  8469. <code>vaultRole</code></br>
  8470. <em>
  8471. string
  8472. </em>
  8473. </td>
  8474. <td>
  8475. <p>Vault Role. In vault, a role describes an identity with a set of permissions, groups, or policies you want to attach a user of the secrets engine</p>
  8476. </td>
  8477. </tr>
  8478. <tr>
  8479. <td>
  8480. <code>externalID</code></br>
  8481. <em>
  8482. string
  8483. </em>
  8484. </td>
  8485. <td>
  8486. <p>AWS External ID set on assumed IAM roles</p>
  8487. </td>
  8488. </tr>
  8489. <tr>
  8490. <td>
  8491. <code>vaultAwsIamServerID</code></br>
  8492. <em>
  8493. string
  8494. </em>
  8495. </td>
  8496. <td>
  8497. <p>X-Vault-AWS-IAM-Server-ID is an additional header used by Vault IAM auth method to mitigate against different types of replay attacks. More details here: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  8498. </td>
  8499. </tr>
  8500. <tr>
  8501. <td>
  8502. <code>secretRef</code></br>
  8503. <em>
  8504. <a href="#external-secrets.io/v1beta1.VaultAwsAuthSecretRef">
  8505. VaultAwsAuthSecretRef
  8506. </a>
  8507. </em>
  8508. </td>
  8509. <td>
  8510. <em>(Optional)</em>
  8511. <p>Specify credentials in a Secret object</p>
  8512. </td>
  8513. </tr>
  8514. <tr>
  8515. <td>
  8516. <code>jwt</code></br>
  8517. <em>
  8518. <a href="#external-secrets.io/v1beta1.VaultAwsJWTAuth">
  8519. VaultAwsJWTAuth
  8520. </a>
  8521. </em>
  8522. </td>
  8523. <td>
  8524. <em>(Optional)</em>
  8525. <p>Specify a service account with IRSA enabled</p>
  8526. </td>
  8527. </tr>
  8528. </tbody>
  8529. </table>
  8530. <h3 id="external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth
  8531. </h3>
  8532. <p>
  8533. (<em>Appears on:</em>
  8534. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8535. </p>
  8536. <p>
  8537. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  8538. method, with the role name and a token stored in a Kubernetes Secret resource or
  8539. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  8540. </p>
  8541. <table>
  8542. <thead>
  8543. <tr>
  8544. <th>Field</th>
  8545. <th>Description</th>
  8546. </tr>
  8547. </thead>
  8548. <tbody>
  8549. <tr>
  8550. <td>
  8551. <code>path</code></br>
  8552. <em>
  8553. string
  8554. </em>
  8555. </td>
  8556. <td>
  8557. <p>Path where the JWT authentication backend is mounted
  8558. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  8559. </td>
  8560. </tr>
  8561. <tr>
  8562. <td>
  8563. <code>role</code></br>
  8564. <em>
  8565. string
  8566. </em>
  8567. </td>
  8568. <td>
  8569. <em>(Optional)</em>
  8570. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  8571. authentication method</p>
  8572. </td>
  8573. </tr>
  8574. <tr>
  8575. <td>
  8576. <code>secretRef</code></br>
  8577. <em>
  8578. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8579. External Secrets meta/v1.SecretKeySelector
  8580. </a>
  8581. </em>
  8582. </td>
  8583. <td>
  8584. <em>(Optional)</em>
  8585. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  8586. authenticate with Vault using the JWT/OIDC authentication method.</p>
  8587. </td>
  8588. </tr>
  8589. <tr>
  8590. <td>
  8591. <code>kubernetesServiceAccountToken</code></br>
  8592. <em>
  8593. <a href="#external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">
  8594. VaultKubernetesServiceAccountTokenAuth
  8595. </a>
  8596. </em>
  8597. </td>
  8598. <td>
  8599. <em>(Optional)</em>
  8600. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  8601. a token for with the <code>TokenRequest</code> API.</p>
  8602. </td>
  8603. </tr>
  8604. </tbody>
  8605. </table>
  8606. <h3 id="external-secrets.io/v1beta1.VaultKVStoreVersion">VaultKVStoreVersion
  8607. (<code>string</code> alias)</p></h3>
  8608. <p>
  8609. (<em>Appears on:</em>
  8610. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  8611. </p>
  8612. <p>
  8613. </p>
  8614. <table>
  8615. <thead>
  8616. <tr>
  8617. <th>Value</th>
  8618. <th>Description</th>
  8619. </tr>
  8620. </thead>
  8621. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  8622. <td></td>
  8623. </tr><tr><td><p>&#34;v2&#34;</p></td>
  8624. <td></td>
  8625. </tr></tbody>
  8626. </table>
  8627. <h3 id="external-secrets.io/v1beta1.VaultKubernetesAuth">VaultKubernetesAuth
  8628. </h3>
  8629. <p>
  8630. (<em>Appears on:</em>
  8631. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8632. </p>
  8633. <p>
  8634. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  8635. a Secret.</p>
  8636. </p>
  8637. <table>
  8638. <thead>
  8639. <tr>
  8640. <th>Field</th>
  8641. <th>Description</th>
  8642. </tr>
  8643. </thead>
  8644. <tbody>
  8645. <tr>
  8646. <td>
  8647. <code>mountPath</code></br>
  8648. <em>
  8649. string
  8650. </em>
  8651. </td>
  8652. <td>
  8653. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  8654. &ldquo;kubernetes&rdquo;</p>
  8655. </td>
  8656. </tr>
  8657. <tr>
  8658. <td>
  8659. <code>serviceAccountRef</code></br>
  8660. <em>
  8661. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8662. External Secrets meta/v1.ServiceAccountSelector
  8663. </a>
  8664. </em>
  8665. </td>
  8666. <td>
  8667. <em>(Optional)</em>
  8668. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  8669. If the service account is specified, the service account secret token JWT will be used
  8670. for authenticating with Vault. If the service account selector is not supplied,
  8671. the secretRef will be used instead.</p>
  8672. </td>
  8673. </tr>
  8674. <tr>
  8675. <td>
  8676. <code>secretRef</code></br>
  8677. <em>
  8678. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8679. External Secrets meta/v1.SecretKeySelector
  8680. </a>
  8681. </em>
  8682. </td>
  8683. <td>
  8684. <em>(Optional)</em>
  8685. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  8686. for authenticating with Vault. If a name is specified without a key,
  8687. <code>token</code> is the default. If one is not specified, the one bound to
  8688. the controller will be used.</p>
  8689. </td>
  8690. </tr>
  8691. <tr>
  8692. <td>
  8693. <code>role</code></br>
  8694. <em>
  8695. string
  8696. </em>
  8697. </td>
  8698. <td>
  8699. <p>A required field containing the Vault Role to assume. A Role binds a
  8700. Kubernetes ServiceAccount with a set of Vault policies.</p>
  8701. </td>
  8702. </tr>
  8703. </tbody>
  8704. </table>
  8705. <h3 id="external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  8706. </h3>
  8707. <p>
  8708. (<em>Appears on:</em>
  8709. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth</a>)
  8710. </p>
  8711. <p>
  8712. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  8713. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  8714. </p>
  8715. <table>
  8716. <thead>
  8717. <tr>
  8718. <th>Field</th>
  8719. <th>Description</th>
  8720. </tr>
  8721. </thead>
  8722. <tbody>
  8723. <tr>
  8724. <td>
  8725. <code>serviceAccountRef</code></br>
  8726. <em>
  8727. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8728. External Secrets meta/v1.ServiceAccountSelector
  8729. </a>
  8730. </em>
  8731. </td>
  8732. <td>
  8733. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  8734. </td>
  8735. </tr>
  8736. <tr>
  8737. <td>
  8738. <code>audiences</code></br>
  8739. <em>
  8740. []string
  8741. </em>
  8742. </td>
  8743. <td>
  8744. <em>(Optional)</em>
  8745. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  8746. account token for the service account referenced by <code>serviceAccountRef</code>.
  8747. Defaults to a single audience <code>vault</code> it not specified.
  8748. Deprecated: use serviceAccountRef.Audiences instead</p>
  8749. </td>
  8750. </tr>
  8751. <tr>
  8752. <td>
  8753. <code>expirationSeconds</code></br>
  8754. <em>
  8755. int64
  8756. </em>
  8757. </td>
  8758. <td>
  8759. <em>(Optional)</em>
  8760. <p>Optional expiration time in seconds that will be used to request a temporary
  8761. Kubernetes service account token for the service account referenced by
  8762. <code>serviceAccountRef</code>.
  8763. Deprecated: this will be removed in the future.
  8764. Defaults to 10 minutes.</p>
  8765. </td>
  8766. </tr>
  8767. </tbody>
  8768. </table>
  8769. <h3 id="external-secrets.io/v1beta1.VaultLdapAuth">VaultLdapAuth
  8770. </h3>
  8771. <p>
  8772. (<em>Appears on:</em>
  8773. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8774. </p>
  8775. <p>
  8776. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  8777. with the username and password stored in a Kubernetes Secret resource.</p>
  8778. </p>
  8779. <table>
  8780. <thead>
  8781. <tr>
  8782. <th>Field</th>
  8783. <th>Description</th>
  8784. </tr>
  8785. </thead>
  8786. <tbody>
  8787. <tr>
  8788. <td>
  8789. <code>path</code></br>
  8790. <em>
  8791. string
  8792. </em>
  8793. </td>
  8794. <td>
  8795. <p>Path where the LDAP authentication backend is mounted
  8796. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  8797. </td>
  8798. </tr>
  8799. <tr>
  8800. <td>
  8801. <code>username</code></br>
  8802. <em>
  8803. string
  8804. </em>
  8805. </td>
  8806. <td>
  8807. <p>Username is a LDAP user name used to authenticate using the LDAP Vault
  8808. authentication method</p>
  8809. </td>
  8810. </tr>
  8811. <tr>
  8812. <td>
  8813. <code>secretRef</code></br>
  8814. <em>
  8815. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8816. External Secrets meta/v1.SecretKeySelector
  8817. </a>
  8818. </em>
  8819. </td>
  8820. <td>
  8821. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  8822. user used to authenticate with Vault using the LDAP authentication
  8823. method</p>
  8824. </td>
  8825. </tr>
  8826. </tbody>
  8827. </table>
  8828. <h3 id="external-secrets.io/v1beta1.VaultProvider">VaultProvider
  8829. </h3>
  8830. <p>
  8831. (<em>Appears on:</em>
  8832. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  8833. </p>
  8834. <p>
  8835. <p>Configures an store to sync secrets using a HashiCorp Vault
  8836. KV backend.</p>
  8837. </p>
  8838. <table>
  8839. <thead>
  8840. <tr>
  8841. <th>Field</th>
  8842. <th>Description</th>
  8843. </tr>
  8844. </thead>
  8845. <tbody>
  8846. <tr>
  8847. <td>
  8848. <code>auth</code></br>
  8849. <em>
  8850. <a href="#external-secrets.io/v1beta1.VaultAuth">
  8851. VaultAuth
  8852. </a>
  8853. </em>
  8854. </td>
  8855. <td>
  8856. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  8857. </td>
  8858. </tr>
  8859. <tr>
  8860. <td>
  8861. <code>server</code></br>
  8862. <em>
  8863. string
  8864. </em>
  8865. </td>
  8866. <td>
  8867. <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>
  8868. </td>
  8869. </tr>
  8870. <tr>
  8871. <td>
  8872. <code>path</code></br>
  8873. <em>
  8874. string
  8875. </em>
  8876. </td>
  8877. <td>
  8878. <em>(Optional)</em>
  8879. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  8880. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  8881. for fetching secrets from Vault is optional and will be appended
  8882. if not present in specified path.</p>
  8883. </td>
  8884. </tr>
  8885. <tr>
  8886. <td>
  8887. <code>version</code></br>
  8888. <em>
  8889. <a href="#external-secrets.io/v1beta1.VaultKVStoreVersion">
  8890. VaultKVStoreVersion
  8891. </a>
  8892. </em>
  8893. </td>
  8894. <td>
  8895. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  8896. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  8897. </td>
  8898. </tr>
  8899. <tr>
  8900. <td>
  8901. <code>namespace</code></br>
  8902. <em>
  8903. string
  8904. </em>
  8905. </td>
  8906. <td>
  8907. <em>(Optional)</em>
  8908. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  8909. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  8910. 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>
  8911. </td>
  8912. </tr>
  8913. <tr>
  8914. <td>
  8915. <code>caBundle</code></br>
  8916. <em>
  8917. []byte
  8918. </em>
  8919. </td>
  8920. <td>
  8921. <em>(Optional)</em>
  8922. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  8923. if the Server URL is using HTTPS protocol. This parameter is ignored for
  8924. plain HTTP protocol connection. If not set the system root certificates
  8925. are used to validate the TLS connection.</p>
  8926. </td>
  8927. </tr>
  8928. <tr>
  8929. <td>
  8930. <code>tls</code></br>
  8931. <em>
  8932. <a href="#external-secrets.io/v1beta1.VaultClientTLS">
  8933. VaultClientTLS
  8934. </a>
  8935. </em>
  8936. </td>
  8937. <td>
  8938. <em>(Optional)</em>
  8939. <p>The configuration used for client side related TLS communication, when the Vault server
  8940. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  8941. This parameter is ignored for plain HTTP protocol connection.
  8942. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  8943. which is available under the <code>auth.cert</code> section.</p>
  8944. </td>
  8945. </tr>
  8946. <tr>
  8947. <td>
  8948. <code>caProvider</code></br>
  8949. <em>
  8950. <a href="#external-secrets.io/v1beta1.CAProvider">
  8951. CAProvider
  8952. </a>
  8953. </em>
  8954. </td>
  8955. <td>
  8956. <em>(Optional)</em>
  8957. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  8958. </td>
  8959. </tr>
  8960. <tr>
  8961. <td>
  8962. <code>readYourWrites</code></br>
  8963. <em>
  8964. bool
  8965. </em>
  8966. </td>
  8967. <td>
  8968. <em>(Optional)</em>
  8969. <p>ReadYourWrites ensures isolated read-after-write semantics by
  8970. providing discovered cluster replication states in each request.
  8971. More information about eventual consistency in Vault can be found here
  8972. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  8973. </td>
  8974. </tr>
  8975. <tr>
  8976. <td>
  8977. <code>forwardInconsistent</code></br>
  8978. <em>
  8979. bool
  8980. </em>
  8981. </td>
  8982. <td>
  8983. <em>(Optional)</em>
  8984. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  8985. leader instead of simply retrying within a loop. This can increase performance if
  8986. the option is enabled serverside.
  8987. <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>
  8988. </td>
  8989. </tr>
  8990. </tbody>
  8991. </table>
  8992. <h3 id="external-secrets.io/v1beta1.VaultUserPassAuth">VaultUserPassAuth
  8993. </h3>
  8994. <p>
  8995. (<em>Appears on:</em>
  8996. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8997. </p>
  8998. <p>
  8999. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  9000. with the username and password stored in a Kubernetes Secret resource.</p>
  9001. </p>
  9002. <table>
  9003. <thead>
  9004. <tr>
  9005. <th>Field</th>
  9006. <th>Description</th>
  9007. </tr>
  9008. </thead>
  9009. <tbody>
  9010. <tr>
  9011. <td>
  9012. <code>path</code></br>
  9013. <em>
  9014. string
  9015. </em>
  9016. </td>
  9017. <td>
  9018. <p>Path where the UserPassword authentication backend is mounted
  9019. in Vault, e.g: &ldquo;user&rdquo;</p>
  9020. </td>
  9021. </tr>
  9022. <tr>
  9023. <td>
  9024. <code>username</code></br>
  9025. <em>
  9026. string
  9027. </em>
  9028. </td>
  9029. <td>
  9030. <p>Username is a user name used to authenticate using the UserPass Vault
  9031. authentication method</p>
  9032. </td>
  9033. </tr>
  9034. <tr>
  9035. <td>
  9036. <code>secretRef</code></br>
  9037. <em>
  9038. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9039. External Secrets meta/v1.SecretKeySelector
  9040. </a>
  9041. </em>
  9042. </td>
  9043. <td>
  9044. <p>SecretRef to a key in a Secret resource containing password for the
  9045. user used to authenticate with Vault using the UserPass authentication
  9046. method</p>
  9047. </td>
  9048. </tr>
  9049. </tbody>
  9050. </table>
  9051. <h3 id="external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider
  9052. </h3>
  9053. <p>
  9054. (<em>Appears on:</em>
  9055. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  9056. </p>
  9057. <p>
  9058. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  9059. </p>
  9060. <table>
  9061. <thead>
  9062. <tr>
  9063. <th>Field</th>
  9064. <th>Description</th>
  9065. </tr>
  9066. </thead>
  9067. <tbody>
  9068. <tr>
  9069. <td>
  9070. <code>type</code></br>
  9071. <em>
  9072. <a href="#external-secrets.io/v1beta1.WebhookCAProviderType">
  9073. WebhookCAProviderType
  9074. </a>
  9075. </em>
  9076. </td>
  9077. <td>
  9078. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  9079. </td>
  9080. </tr>
  9081. <tr>
  9082. <td>
  9083. <code>name</code></br>
  9084. <em>
  9085. string
  9086. </em>
  9087. </td>
  9088. <td>
  9089. <p>The name of the object located at the provider type.</p>
  9090. </td>
  9091. </tr>
  9092. <tr>
  9093. <td>
  9094. <code>key</code></br>
  9095. <em>
  9096. string
  9097. </em>
  9098. </td>
  9099. <td>
  9100. <p>The key the value inside of the provider type to use, only used with &ldquo;Secret&rdquo; type</p>
  9101. </td>
  9102. </tr>
  9103. <tr>
  9104. <td>
  9105. <code>namespace</code></br>
  9106. <em>
  9107. string
  9108. </em>
  9109. </td>
  9110. <td>
  9111. <em>(Optional)</em>
  9112. <p>The namespace the Provider type is in.</p>
  9113. </td>
  9114. </tr>
  9115. </tbody>
  9116. </table>
  9117. <h3 id="external-secrets.io/v1beta1.WebhookCAProviderType">WebhookCAProviderType
  9118. (<code>string</code> alias)</p></h3>
  9119. <p>
  9120. (<em>Appears on:</em>
  9121. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider</a>)
  9122. </p>
  9123. <p>
  9124. </p>
  9125. <table>
  9126. <thead>
  9127. <tr>
  9128. <th>Value</th>
  9129. <th>Description</th>
  9130. </tr>
  9131. </thead>
  9132. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  9133. <td></td>
  9134. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  9135. <td></td>
  9136. </tr></tbody>
  9137. </table>
  9138. <h3 id="external-secrets.io/v1beta1.WebhookProvider">WebhookProvider
  9139. </h3>
  9140. <p>
  9141. (<em>Appears on:</em>
  9142. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  9143. </p>
  9144. <p>
  9145. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  9146. </p>
  9147. <table>
  9148. <thead>
  9149. <tr>
  9150. <th>Field</th>
  9151. <th>Description</th>
  9152. </tr>
  9153. </thead>
  9154. <tbody>
  9155. <tr>
  9156. <td>
  9157. <code>method</code></br>
  9158. <em>
  9159. string
  9160. </em>
  9161. </td>
  9162. <td>
  9163. <p>Webhook Method</p>
  9164. </td>
  9165. </tr>
  9166. <tr>
  9167. <td>
  9168. <code>url</code></br>
  9169. <em>
  9170. string
  9171. </em>
  9172. </td>
  9173. <td>
  9174. <p>Webhook url to call</p>
  9175. </td>
  9176. </tr>
  9177. <tr>
  9178. <td>
  9179. <code>headers</code></br>
  9180. <em>
  9181. map[string]string
  9182. </em>
  9183. </td>
  9184. <td>
  9185. <em>(Optional)</em>
  9186. <p>Headers</p>
  9187. </td>
  9188. </tr>
  9189. <tr>
  9190. <td>
  9191. <code>body</code></br>
  9192. <em>
  9193. string
  9194. </em>
  9195. </td>
  9196. <td>
  9197. <em>(Optional)</em>
  9198. <p>Body</p>
  9199. </td>
  9200. </tr>
  9201. <tr>
  9202. <td>
  9203. <code>timeout</code></br>
  9204. <em>
  9205. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  9206. Kubernetes meta/v1.Duration
  9207. </a>
  9208. </em>
  9209. </td>
  9210. <td>
  9211. <em>(Optional)</em>
  9212. <p>Timeout</p>
  9213. </td>
  9214. </tr>
  9215. <tr>
  9216. <td>
  9217. <code>result</code></br>
  9218. <em>
  9219. <a href="#external-secrets.io/v1beta1.WebhookResult">
  9220. WebhookResult
  9221. </a>
  9222. </em>
  9223. </td>
  9224. <td>
  9225. <p>Result formatting</p>
  9226. </td>
  9227. </tr>
  9228. <tr>
  9229. <td>
  9230. <code>secrets</code></br>
  9231. <em>
  9232. <a href="#external-secrets.io/v1beta1.WebhookSecret">
  9233. []WebhookSecret
  9234. </a>
  9235. </em>
  9236. </td>
  9237. <td>
  9238. <em>(Optional)</em>
  9239. <p>Secrets to fill in templates
  9240. These secrets will be passed to the templating function as key value pairs under the given name</p>
  9241. </td>
  9242. </tr>
  9243. <tr>
  9244. <td>
  9245. <code>caBundle</code></br>
  9246. <em>
  9247. []byte
  9248. </em>
  9249. </td>
  9250. <td>
  9251. <em>(Optional)</em>
  9252. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  9253. if the Server URL is using HTTPS protocol. This parameter is ignored for
  9254. plain HTTP protocol connection. If not set the system root certificates
  9255. are used to validate the TLS connection.</p>
  9256. </td>
  9257. </tr>
  9258. <tr>
  9259. <td>
  9260. <code>caProvider</code></br>
  9261. <em>
  9262. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">
  9263. WebhookCAProvider
  9264. </a>
  9265. </em>
  9266. </td>
  9267. <td>
  9268. <em>(Optional)</em>
  9269. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  9270. </td>
  9271. </tr>
  9272. </tbody>
  9273. </table>
  9274. <h3 id="external-secrets.io/v1beta1.WebhookResult">WebhookResult
  9275. </h3>
  9276. <p>
  9277. (<em>Appears on:</em>
  9278. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  9279. </p>
  9280. <p>
  9281. </p>
  9282. <table>
  9283. <thead>
  9284. <tr>
  9285. <th>Field</th>
  9286. <th>Description</th>
  9287. </tr>
  9288. </thead>
  9289. <tbody>
  9290. <tr>
  9291. <td>
  9292. <code>jsonPath</code></br>
  9293. <em>
  9294. string
  9295. </em>
  9296. </td>
  9297. <td>
  9298. <em>(Optional)</em>
  9299. <p>Json path of return value</p>
  9300. </td>
  9301. </tr>
  9302. </tbody>
  9303. </table>
  9304. <h3 id="external-secrets.io/v1beta1.WebhookSecret">WebhookSecret
  9305. </h3>
  9306. <p>
  9307. (<em>Appears on:</em>
  9308. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  9309. </p>
  9310. <p>
  9311. </p>
  9312. <table>
  9313. <thead>
  9314. <tr>
  9315. <th>Field</th>
  9316. <th>Description</th>
  9317. </tr>
  9318. </thead>
  9319. <tbody>
  9320. <tr>
  9321. <td>
  9322. <code>name</code></br>
  9323. <em>
  9324. string
  9325. </em>
  9326. </td>
  9327. <td>
  9328. <p>Name of this secret in templates</p>
  9329. </td>
  9330. </tr>
  9331. <tr>
  9332. <td>
  9333. <code>secretRef</code></br>
  9334. <em>
  9335. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9336. External Secrets meta/v1.SecretKeySelector
  9337. </a>
  9338. </em>
  9339. </td>
  9340. <td>
  9341. <p>Secret ref to fill in credentials</p>
  9342. </td>
  9343. </tr>
  9344. </tbody>
  9345. </table>
  9346. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  9347. </h3>
  9348. <p>
  9349. (<em>Appears on:</em>
  9350. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  9351. </p>
  9352. <p>
  9353. </p>
  9354. <table>
  9355. <thead>
  9356. <tr>
  9357. <th>Field</th>
  9358. <th>Description</th>
  9359. </tr>
  9360. </thead>
  9361. <tbody>
  9362. <tr>
  9363. <td>
  9364. <code>authorizedKeySecretRef</code></br>
  9365. <em>
  9366. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9367. External Secrets meta/v1.SecretKeySelector
  9368. </a>
  9369. </em>
  9370. </td>
  9371. <td>
  9372. <em>(Optional)</em>
  9373. <p>The authorized key used for authentication</p>
  9374. </td>
  9375. </tr>
  9376. </tbody>
  9377. </table>
  9378. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  9379. </h3>
  9380. <p>
  9381. (<em>Appears on:</em>
  9382. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  9383. </p>
  9384. <p>
  9385. </p>
  9386. <table>
  9387. <thead>
  9388. <tr>
  9389. <th>Field</th>
  9390. <th>Description</th>
  9391. </tr>
  9392. </thead>
  9393. <tbody>
  9394. <tr>
  9395. <td>
  9396. <code>certSecretRef</code></br>
  9397. <em>
  9398. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9399. External Secrets meta/v1.SecretKeySelector
  9400. </a>
  9401. </em>
  9402. </td>
  9403. <td>
  9404. </td>
  9405. </tr>
  9406. </tbody>
  9407. </table>
  9408. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  9409. </h3>
  9410. <p>
  9411. (<em>Appears on:</em>
  9412. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  9413. </p>
  9414. <p>
  9415. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  9416. </p>
  9417. <table>
  9418. <thead>
  9419. <tr>
  9420. <th>Field</th>
  9421. <th>Description</th>
  9422. </tr>
  9423. </thead>
  9424. <tbody>
  9425. <tr>
  9426. <td>
  9427. <code>apiEndpoint</code></br>
  9428. <em>
  9429. string
  9430. </em>
  9431. </td>
  9432. <td>
  9433. <em>(Optional)</em>
  9434. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  9435. </td>
  9436. </tr>
  9437. <tr>
  9438. <td>
  9439. <code>auth</code></br>
  9440. <em>
  9441. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerAuth">
  9442. YandexCertificateManagerAuth
  9443. </a>
  9444. </em>
  9445. </td>
  9446. <td>
  9447. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  9448. </td>
  9449. </tr>
  9450. <tr>
  9451. <td>
  9452. <code>caProvider</code></br>
  9453. <em>
  9454. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">
  9455. YandexCertificateManagerCAProvider
  9456. </a>
  9457. </em>
  9458. </td>
  9459. <td>
  9460. <em>(Optional)</em>
  9461. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  9462. </td>
  9463. </tr>
  9464. </tbody>
  9465. </table>
  9466. <h3 id="external-secrets.io/v1beta1.YandexLockboxAuth">YandexLockboxAuth
  9467. </h3>
  9468. <p>
  9469. (<em>Appears on:</em>
  9470. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  9471. </p>
  9472. <p>
  9473. </p>
  9474. <table>
  9475. <thead>
  9476. <tr>
  9477. <th>Field</th>
  9478. <th>Description</th>
  9479. </tr>
  9480. </thead>
  9481. <tbody>
  9482. <tr>
  9483. <td>
  9484. <code>authorizedKeySecretRef</code></br>
  9485. <em>
  9486. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9487. External Secrets meta/v1.SecretKeySelector
  9488. </a>
  9489. </em>
  9490. </td>
  9491. <td>
  9492. <em>(Optional)</em>
  9493. <p>The authorized key used for authentication</p>
  9494. </td>
  9495. </tr>
  9496. </tbody>
  9497. </table>
  9498. <h3 id="external-secrets.io/v1beta1.YandexLockboxCAProvider">YandexLockboxCAProvider
  9499. </h3>
  9500. <p>
  9501. (<em>Appears on:</em>
  9502. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  9503. </p>
  9504. <p>
  9505. </p>
  9506. <table>
  9507. <thead>
  9508. <tr>
  9509. <th>Field</th>
  9510. <th>Description</th>
  9511. </tr>
  9512. </thead>
  9513. <tbody>
  9514. <tr>
  9515. <td>
  9516. <code>certSecretRef</code></br>
  9517. <em>
  9518. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9519. External Secrets meta/v1.SecretKeySelector
  9520. </a>
  9521. </em>
  9522. </td>
  9523. <td>
  9524. </td>
  9525. </tr>
  9526. </tbody>
  9527. </table>
  9528. <h3 id="external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider
  9529. </h3>
  9530. <p>
  9531. (<em>Appears on:</em>
  9532. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  9533. </p>
  9534. <p>
  9535. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  9536. </p>
  9537. <table>
  9538. <thead>
  9539. <tr>
  9540. <th>Field</th>
  9541. <th>Description</th>
  9542. </tr>
  9543. </thead>
  9544. <tbody>
  9545. <tr>
  9546. <td>
  9547. <code>apiEndpoint</code></br>
  9548. <em>
  9549. string
  9550. </em>
  9551. </td>
  9552. <td>
  9553. <em>(Optional)</em>
  9554. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  9555. </td>
  9556. </tr>
  9557. <tr>
  9558. <td>
  9559. <code>auth</code></br>
  9560. <em>
  9561. <a href="#external-secrets.io/v1beta1.YandexLockboxAuth">
  9562. YandexLockboxAuth
  9563. </a>
  9564. </em>
  9565. </td>
  9566. <td>
  9567. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  9568. </td>
  9569. </tr>
  9570. <tr>
  9571. <td>
  9572. <code>caProvider</code></br>
  9573. <em>
  9574. <a href="#external-secrets.io/v1beta1.YandexLockboxCAProvider">
  9575. YandexLockboxCAProvider
  9576. </a>
  9577. </em>
  9578. </td>
  9579. <td>
  9580. <em>(Optional)</em>
  9581. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  9582. </td>
  9583. </tr>
  9584. </tbody>
  9585. </table>
  9586. <hr/>
  9587. <p><em>
  9588. Generated with <code>gen-crd-api-reference-docs</code>.
  9589. </em></p>
  9590. </article>
  9591. </div>
  9592. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  9593. </div>
  9594. </main>
  9595. <footer class="md-footer">
  9596. <div class="md-footer-meta md-typeset">
  9597. <div class="md-footer-meta__inner md-grid">
  9598. <div class="md-copyright">
  9599. <div class="md-copyright__highlight">
  9600. &copy; 2024 The external-secrets Authors.<br/>
  9601. &copy; 2024 The Linux Foundation. All rights reserved.<br/><br/>
  9602. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  9603. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  9604. </div>
  9605. Made with
  9606. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  9607. Material for MkDocs
  9608. </a>
  9609. </div>
  9610. </div>
  9611. </div>
  9612. </footer>
  9613. </div>
  9614. <div class="md-dialog" data-md-component="dialog">
  9615. <div class="md-dialog__inner md-typeset"></div>
  9616. </div>
  9617. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  9618. <script src="../../assets/javascripts/bundle.a7c05c9e.min.js"></script>
  9619. </body>
  9620. </html>